/**
 * Bill Summary Public Page Styles
 */

.legitracker-bill-summary {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Header */
.bill-header {
    border-bottom: 3px solid #0073aa;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.bill-number {
    font-size: 2em;
    margin: 0 0 10px 0;
    color: #0073aa;
    font-weight: bold;
}

.bill-title {
    font-size: 1.5em;
    margin: 0 0 15px 0;
    color: #333;
    font-weight: normal;
}

.bill-status-badge {
    display: inline-block;
    padding: 8px 15px;
    background: #f0f0f0;
    border-left: 4px solid #0073aa;
    font-size: 0.95em;
}

/* Content Sections */
.bill-content {
    margin-bottom: 40px;
}

.bill-section {
    margin-bottom: 30px;
}

.bill-section h3 {
    font-size: 1.3em;
    margin: 0 0 15px 0;
    color: #333;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 8px;
}

.bill-section p {
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* Placeholder for missing analysis */
.bill-section.placeholder .placeholder-text {
    font-style: italic;
    color: #999;
}

/* Risks List */
.risks-list {
    margin: 0;
    padding-left: 25px;
}

.risks-list li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #555;
}

/* Footer */
.bill-footer {
    border-top: 1px solid #e0e0e0;
    padding-top: 30px;
    text-align: center;
}

.ohio-legislature-link {
    display: inline-block;
    padding: 12px 24px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background 0.2s;
}

.ohio-legislature-link:hover {
    background: #005a87;
    color: #fff;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .legitracker-bill-summary {
        padding: 0 15px;
        margin: 20px auto;
    }

    .bill-number {
        font-size: 1.5em;
    }

    .bill-title {
        font-size: 1.2em;
    }

    .bill-section h3 {
        font-size: 1.1em;
    }
}
