/* Mandatory Disclosure Page Styles */

.page-hero {
    padding: 100px 20px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-hero .hero-content h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.page-hero .hero-content h1 i {
    margin-right: 10px;
    -webkit-text-fill-color: var(--primary);
}

.page-hero .hero-content p {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.5;
    text-align: center;
}

.disclosure-header {
    margin-bottom: 25px;
    text-align: center;
}

.disclosure-header .section-title {
    justify-content: center;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.disclosure-header .section-title h2 {
    font-size: 1.5rem;
    margin: 0;
}

.disclosure-header .section-subtitle {
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
    text-align: center;
}

.disclosure-table-wrapper {
    overflow-x: auto;
    margin-bottom: 30px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.disclosure-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.disclosure-table thead {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(168, 85, 247, 0.15));
    border-bottom: 2px solid rgba(99, 102, 241, 0.3);
}

.disclosure-table thead th {
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.disclosure-table thead th:first-child {
    width: 80px;
    text-align: center;
}

.disclosure-table thead th:last-child {
    width: 160px;
    text-align: center;
}

.disclosure-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.disclosure-table tbody tr:hover {
    background: rgba(99, 102, 241, 0.08);
}

.disclosure-table tbody tr:last-child {
    border-bottom: none;
}

.disclosure-table tbody td {
    padding: 14px 16px;
    color: var(--text-secondary);
}

.disclosure-table tbody td:first-child {
    text-align: center;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
}

.disclosure-table tbody td:nth-child(2) {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.disclosure-table tbody td:last-child {
    text-align: center;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.4);
}

.download-btn i {
    font-size: 0.9rem;
}

.loading-row {
    text-align: center;
    padding: 40px 20px !important;
    color: var(--text-muted);
    font-size: 1rem;
}

.loading-row i {
    margin-right: 10px;
    color: var(--primary);
}

.no-documents {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
}

.no-documents i {
    font-size: 3rem;
    margin-bottom: 16px;
    color: var(--text-muted);
    opacity: 0.5;
}

.disclosure-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.info-card {
    display: flex;
    gap: 14px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-2px);
}

.info-card i {
    font-size: 1.6rem;
    color: var(--primary);
    flex-shrink: 0;
}

.info-card h4 {
    margin: 0 0 6px 0;
    font-size: 1rem;
    color: var(--text-primary);
}

.info-card p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-hero {
        padding: 90px 20px 15px;
    }

    .page-hero .hero-content h1 {
        font-size: 1.8rem;
    }

    .page-hero .hero-content p {
        font-size: 0.95rem;
    }

    .disclosure-table {
        font-size: 0.85rem;
    }

    .disclosure-table thead th,
    .disclosure-table tbody td {
        padding: 12px 10px;
    }

    .disclosure-table thead th:first-child,
    .disclosure-table tbody td:first-child {
        width: 60px;
    }

    .download-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .disclosure-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .disclosure-table thead th:first-child {
        display: none;
    }

    .disclosure-table tbody td:first-child {
        display: none;
    }

    .disclosure-table thead th,
    .disclosure-table tbody td {
        padding: 10px 8px;
    }
}

/* PDF Preview Modal Styles */
.pdf-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.pdf-modal-content {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.95), rgba(31, 41, 55, 0.95));
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 16px;
    width: 90%;
    max-width: 1200px;
    height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.pdf-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pdf-modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.pdf-close-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.pdf-close-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.pdf-modal-body {
    flex: 1;
    padding: 20px;
    overflow: hidden;
}

.pdf-modal-body iframe {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: white;
}

.pdf-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 20px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pdf-modal-footer .btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
}

.pdf-modal-footer .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.pdf-modal-footer .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

.pdf-modal-footer .btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.pdf-modal-footer .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

/* Mobile Responsive for Modal */
@media (max-width: 768px) {
    .pdf-modal-content {
        width: 95%;
        height: 95vh;
    }

    .pdf-modal-header {
        padding: 15px 20px;
    }

    .pdf-modal-header h3 {
        font-size: 1.2rem;
    }

    .pdf-modal-body {
        padding: 10px;
    }

    .pdf-modal-footer {
        padding: 15px 20px;
        flex-direction: column;
    }

    .pdf-modal-footer .btn {
        width: 100%;
        justify-content: center;
    }
}
