.clinical-table-section {
    background-color: #ffffff;
    padding: 80px 5%;
    font-family: 'Inter', sans-serif;
    color: #333333;
    overflow: hidden;
}

.table-container {
    max-width: 1000px;
    margin: 0 auto;
}

.table-header-block {
    text-align: center;
    margin-bottom: 50px;
}

.table-badge {
    color: #3C0145;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 2.5px;
    background: #f5e6f8;
    padding: 6px 16px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 15px;
}

.table-main-title {
    font-size: 32px;
    color: #3C0145;
    font-weight: 800;
    margin-bottom: 15px;
}

.table-subtitle {
    max-width: 700px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.6;
    color: #666666;
}

.responsive-table-wrapper {
    width: 100%;
    overflow-x: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border: 1px solid #eeeeee;
}

.clinical-data-matrix {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    background: #ffffff;
}

.clinical-data-matrix th {
    background-color: #fdfbff;
    color: #3C0145;
    font-weight: 800;
    font-size: 15px;
    padding: 22px 30px;
    border-bottom: 2px solid #f5e6f8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.clinical-data-matrix td {
    padding: 20px 30px;
    font-size: 14.5px;
    line-height: 1.5;
    color: #555555;
    border-bottom: 1px solid #f9f9f9;
}

.clinical-data-matrix tr:last-child td {
    border-bottom: none;
}

.clinical-data-matrix tr:hover td {
    background-color: #fdfbff;
    color: #333333;
}

.primary-symptom-column {
    font-weight: 700;
    color: #3C0145 !important;
}

@keyframes fadeInUpTable {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRow {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.table-header-block {
    view-timeline-name: --table-hdr;
    view-timeline-axis: block;
    animation: fadeInUpTable linear both;
    animation-timeline: --table-hdr;
    animation-range: entry 5% cover 25%;
}

.animate-row-slide {
    view-timeline-name: --table-row;
    view-timeline-axis: block;
    /* animation: slideInRow linear both; */
    animation-timeline: --table-row;
    animation-range: entry 5% cover 20%;
}

@media (max-width: 768px) {

    .clinical-data-matrix th,
    .clinical-data-matrix td {
        padding: 15px 20px;
        font-size: 13.5px;
    }

    .table-main-title {
        font-size: 26px;
    }
}