/* Lifted from the inline <style> blocks that the treatment PHP pages carried.
   Those pages are now rendered by pages/[treatment].tsx from CMS data, so the
   rules live in a stylesheet instead of being repeated in every page. */

.accordion li {
    position: relative;
    list-style-type: auto;
    margin-bottom: 0px;
}

/* SIDEBAR MAIN BOX */
.sidebar-box {
    background: #0f3b8f;
    border-radius: 20px;
}

/* Doctor Card */
.doctor-card img {
    border-radius: 12px;
}

.doctor-card .btn-light {
    background: #ffffff;
    color: #0f3b8f;
    border-radius: 6px;
}

.doctor-card .btn-primary {
    background: #1c55c7;
    border: none;
    border-radius: 6px;
}

/* Treatments */
.treatment-box a {
    display: block;
    background: #e9ecef;
    padding: 10px 12px;
    margin-bottom: 8px;
    text-decoration: none;
    color: #0f3b8f;
    font-size: 13px;
    font-weight: 600;
    border-radius: 5px;
    transition: 0.3s;
}

.treatment-box a:hover {
    background: #cfd8dc;
}

/* Recent Posts */
.post-item {
    background: #e9ecef;
    padding: 10px;
    margin-bottom: 8px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    color: #0f3b8f;
}

.post-thumb {
    width: 85px;
    object-fit: cover;
    border-radius: 4px;
}

.post-title {
    line-height: 1.2;
}

/* Appointment Strip */
.appointment-strip {
    background: linear-gradient(90deg, #0f3b8f, #1c55c7);
}

/* Light Section Background */
.info-section {
    background: #f1e7e7;
}

/* Video box */
.video-box iframe {
    border-radius: 8px;
}

/* FAQ Styling */
.accordion-button {
    background: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background: #dbe9ff;
    color: #0f3b8f;
}

.accordion-item {
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 8px;
}
