body::-webkit-scrollbar{
    display: none; /* For Chrome, Safari, and Opera */
}

.container{
    min-height: calc(100vh - 80px);
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background: linear-gradient(to bottom, #7D0000, #C00000, #D32F2F, #E57373);
}
.services{
    padding: 0 40px;
    width: 100%;
}

.services .breadcrumb{
    color: white;
}

.services .breadcrumb a{
    color: white;
    text-decoration: none;
}

.services .title{
    text-align: center;
    color: white;
    font-size: 3rem;
    margin: 20px;
}


.services-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    background-color: white;
    padding: 50px;
    border-radius: 5px;
}

.schedule{
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 40%;
}

.services-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #EEEEEE;
    padding: 20px;
}

.services-menu a {
    display: block;
    background-color: #FFFFFF;
    color: #000;
    text-decoration: none;
    padding: 12px;
    text-align: center;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.services-menu a:hover,
.services-menu .active {
    background-color: #800000;
    color: white;
}

.service-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
}

.service-image {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.service-description h3 {
    color: #800000;
    font-size: 22px;
    margin-bottom: 8px;
}

.service-description p {
    line-height: 1.6;
}

.service-schedule {
    background-color: white;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 15px;
    text-align: center;
}

.schedule-title {
    font-size: 2rem;
    color: #800000;
    text-align: center;
    margin-bottom: 20px;
}

.schedule-header {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    margin-bottom: 10px;
    padding: 0 10px;
}

.header{
    flex: 1;
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin: 5px 0;
    padding: 0 10px;
}

.service-name,
.schedule-day, .doctor-name {
    background-color: #eee;
    padding: 8px 12px;
    border-radius: 6px;
    text-align: center;
    flex: 1;
}

.service-name.empty, .doctor-name.empty {
    background: none;
}

.schedule-divider {
    border: none;
    border-top: 1px solid #ccc;
    margin: 15px auto;
    width: 80%;
}


/* ============================= */
/*  RESPONSIVE STYLES */
/* ============================= */

/* Phones (≤600px) */
@media (max-width: 600px) {
    .address-contact {
        padding: 5px;
    }

    .address-contact p {
        font-size: 10px;
    }

    .services .breadcrumb{
        font-size: 12px;
        padding: 5px 20px;
    }

    .container {
        margin-top: 70px;
    }

    .services {
        padding: 0;
    }

    .services .title {
        font-size: 2rem;
    }

    .services-container {
        flex-direction: column;
        padding: 25px 20px;
        gap: 30px;
    }

    .schedule {
        width: 100%;
    }

    .slideshow-container {
        height: auto;
        max-height: 300px;
    }

    .service-slide {
        height: 250px;
    }

    .schedule-header,
    .schedule-row {
        gap: 8px;
    }

    .service-name,
    .schedule-day,
    .doctor-name {
        width: 100%;
    }

    .prev, .next {
        padding: 8px;
        font-size: 16px;
    }

    .schedule-title {
        font-size: 1.5rem;
    }
}

/* Tablets (601px–1024px) */
@media (min-width: 601px) and (max-width: 1024px) {
    .services-container {
        flex-direction: column;
        padding: 35px;
        gap: 25px;
    }

    .schedule {
        width: 100%;
    }

    .slideshow-container {
        max-height: 380px;
    }

    .service-slide {
        height: 350px;
    }

    .schedule-title {
        font-size: 1.8rem;
    }
}

/* Large desktops (≥1025px) */
@media (min-width: 1025px) {
    .services-container {
        flex-direction: row;
    }
}
