/* Treatment Cost Table Styles */
.tct__container {
    width: 100%;
    overflow-x: auto;
    margin: 20px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.tct__table {
    width: 100%;
    min-width: 800px;
    border-collapse: collapse;
    background-color: white;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

.tct__header {
    background-color: #f8f9fa;
    font-weight: bold;
    text-align: center;
    padding: 12px 8px;
    border: 1px solid #dee2e6;
}

.tct__treatment {
    background-color: #f1f3f4;
    font-weight: 600;
    padding: 12px 8px;
    border: 1px solid #dee2e6;
    text-align: left;
}

.tct__cost-standard {
    background-color: white;
    padding: 12px 8px;
    border: 1px solid #dee2e6;
    text-align: center;
    vertical-align: top;
}

.tct__cost-insurance {
    background-color: white;
    padding: 12px 8px;
    border: 1px solid #dee2e6;
    text-align: center;
    vertical-align: top;
}

.tct__cost-private {
    background-color: #fee2e2;
    padding: 12px 8px;
    border: 1px solid #dee2e6;
    text-align: center;
    vertical-align: top;
    font-weight: 600;
}

.tct__note {
    font-size: 12px;
    color: #666;
    margin-top: 4px;
}

.tct__price-range {
    font-weight: 600;
    color: #dc7c26;
}

/* Mobile responsiveness */
@media screen and (max-width: 768px) {
    .tct__container {
        margin: 10px 0;
    }

    .tct__table {
        font-size: 12px;
    }

    .tct__header,
    .tct__treatment,
    .tct__cost-standard,
    .tct__cost-insurance,
    .tct__cost-private {
        padding: 8px 6px;
    }
}

/* Scrollbar styling */
.tct__container::-webkit-scrollbar {
    height: 8px;
}

.tct__container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.tct__container::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

.tct__container::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}
