body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FFFFFF;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background-color: #096A2E;
    color: #FFFFFF;
    padding: 20px 0;
}
h1 {
    margin: 0;
}

h3 {
    margin-top: 10px;
    margin-bottom: 5px;
    font-size: 18px;
}
header img {
    width: 200px;
    height: 200px;
}

header h1 {
    margin: 0;
    font-size: 36px;
}

header p {
    margin-top: 5px;
    font-size: 18px;
}

.services h2 {
    color: #729343;
}

.gallery img {
    width: 100%;
    border: 2px solid #096A2E;
    border-radius: 5px;
}

footer {
    background-color: #096A2E;
    color: white;
    padding: 10px 0;
    text-align: center;
}
.gallery-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    overflow: hidden;
}

.gallery-container {
    overflow: hidden;
    width: 80%; /* Adjust width as needed */
}

.gallery-row {
    display: flex;
    transition: transform 0.4s ease;
    will-change: transform;
}

.gallery-item {
    flex: 0 0 33.33%; /* 3 visible images at a time */
    margin-right: 10px;
    box-sizing: border-box;
}

.gallery-item img {
    width: 100%;
    border: 2px solid #096A2E;
    border-radius: 5px;
}

.scroll-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #096A2E;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
    z-index: 10;
    border-radius: 50%;
}

.scroll-button.left {
    left: 0;
}

.scroll-button.right {
    right: 0;
}

.scroll-button:hover {
    background-color: #729343;
}
.calendar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.day-schedule {
    background-color: white;
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    width: 32%; /* 3 days per row */
    box-sizing: border-box;
}

/* Calendar Grid */
.calendar-grid {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px; /* Add some space between the title and the calendar */
}

.calendar-grid th {
    padding: 15px;
    background-color: #096A2E;
    color: white;
    text-align: center;
    font-size: 18px;
}

.calendar-grid td {
    width: 14.28%; /* 7 columns (days of the week) */
    height: 150px; /* Minimum height for day blocks */
    vertical-align: top;
    padding: 5px;
    border: 2px solid #096A2E; /* Bold border around each day */
    background-color: white;
    position: relative;
    box-sizing: border-box;
}

.calendar-day {
    font-weight: bold;
    font-size: 18px;
    color: #096A2E;
}

.calendar-header {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
}

.appointments-list {
    margin-top: 10px;
}

.book-consult {
    position: absolute;
    bottom: 10px;
    left: 10px;
    margin-top: 10px; /* Ensure space between last appointment and the "Book Consult" link */
}

.time-slot {
    background-color: #F8D7DA;
    color: #721C24;
    margin-bottom: 5px;
    padding: 5px;
    border-radius: 4px;
    font-size: 12px;
}


.book-consult a {
    font-size: 12px;
    color: #096A2E;
    text-decoration: none;
}

.book-consult a:hover {
    text-decoration: underline;
}

/* Calendar Navigation */
.calendar-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.scroll-button {
    background-color: #096A2E;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 50%;
}

.scroll-button:hover {
    background-color: #729343;
}

/* Navigation Bar */
.navigation {
    text-align: center;
    margin: 20px 0; /* Adds space between the header and the menu */
}

.navigation a {
    margin: 0 15px;
    text-decoration: none;
    color: #000; /* Bold black text for links */
    font-weight: bold;
    font-size: 16px;
}

.navigation a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    margin-top: 30px;
    background-color: #096A2E;
    color: white;
    padding: 15px;
    text-align: center;
}


.time-slot.available {
    background-color: #E6F7E9;
    color: #096A2E;
}

.time-slot.blocked {
    background-color: #F8D7DA;
    color: #721C24;
}

@media (max-width: 768px) {
    .day-schedule {
        width: 48%; /* 2 days per row for smaller screens */
    }
}

@media (max-width: 480px) {
    .day-schedule {
        width: 100%; /* 1 day per row for mobile */
    }
}
.time-slot.confirmed {
    background-color: #28a745; /* Green for confirmed */
    color: white;
    padding: 5px;
    border-radius: 3px;
    margin-bottom: 5px;
}

.time-slot.completed {
    background-color: #dc3545; /* Red for completed */
    color: white;
    padding: 5px;
    border-radius: 3px;
    margin-bottom: 5px;
}
/* Limit the max height of lightbox images */
.lightbox .lb-image {
    max-height: 90vh; /* Max height will be 90% of the viewport height */
    width: auto;      /* Maintain aspect ratio */
    object-fit: contain; /* Ensure the image fits nicely */
}

/* Ensure the close button is always visible */
.lightbox .lb-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1000;
}

