.menu-item.bg-blue-600 {
    background-color: #2563eb; /* Adjust this color as needed */
}

.date-timeslot-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}


.datepicker-container {
    position: relative;
    flex: 1 1 300px; /* Adjust the flex-basis value based on your layout preference */
    min-width: 300px; /* Ensure a minimum width for better layout on smaller screens */
}

.timeslots-container {
    display: flex;
    flex-direction: column;
    flex: 2 1 300px; /* Adjust the flex-basis value based on your layout preference */
    min-width: 300px; /* Ensure a minimum width for better layout on smaller screens */
    gap: 0.5rem; /* Add gap between buttons */
}

/* Timeslot Button Styles */
.timeslot-btn {
    display: block;
    width: 100%;
    background-color: #1d4ed8; /* Darker blue for better contrast */
    color: #ffffff; /* White text for high contrast */
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem; /* Tailwind rounded */
    margin-bottom: 0.5rem; /* Tailwind mb-2 */
    text-align: center;
}

.timeslot-btn:hover {
    background-color: #1e40af; /* Even darker blue on hover for better contrast */
}

.selected-date {
    background-color: #ffeb3b; /* Yellow background */
    color: #dd1b1b; /* Black text */
}

.selected-timeslot {
    background-color: #efefef; /* Blue background */
    color: #333; /* White text */
    border: 2px solid #24c116; /* Black border */
}

/* Responsive styles for mobile */
@media (max-width: 768px) {
    /* Hide sidebar by default */
    aside {
        transform: translateX(-100%);
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        width: 250px;
        z-index: 1000;
        transition: transform 0.3s ease-in-out;
    }

    /* Show sidebar when active */
    aside.active {
        transform: translateX(0);
    }

    /* Hamburger menu button */
    #hamburger-menu {
        display: block;
        position: fixed;
        top: 10px;
        left: 10px;
        z-index: 1001;
        background: none;
        border: none;
        font-size: 30px;
        color: #333;
        cursor: pointer;
    }

    /* Adjust main content area */
    .flex-1.flex.flex-col.ml-64 {
        margin-left: 0;
    }

    /* Adjust top bar for mobile */
    .flex.justify-between.items-center.p-6.bg-white.shadow.mb-6 {
        padding-left: 50px; /* Make room for the hamburger menu */
    }
}

/* Overlay for mobile when sidebar is open */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.sidebar-overlay.active {
    display: block;
}

