﻿.header {
    padding: 8px 12px;
    background-color: #fff;
    border-bottom: 1px solid #e5e7eb;
    text-align: center;
}

.user-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    text-align:left;
}

.separator {
    height: 1px;
    background-color: #e5e7eb;
    margin: 0 12px;
}

.month-year-container {
  
}

.month-year-dropdown {
    font-size: 1rem;
    padding: 10px 12px;
    border-radius: 6px;
    background-color: #fff;
    color: #007BFF;
    font-weight: 600;
    border: 1px solid #e5e7eb;
    margin-top: 10px;
}

    .month-year-dropdown option {
        font-size: 1rem; /* Smaller font size for dropdown options */
        font-weight: normal; /* Normal weight for options */
        color: #000; /* Default text color for options */
    }

.day-scroll-container {
    display: flex;
    overflow-x: auto; /* Enable horizontal scroll */
    gap: 25px;
    padding: 10px;
    white-space: nowrap;
}

.day-wrapper {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    position: relative; /* Position relative for proper placement of the "Today" label */
    margin-top: 30px;
}

.today-label {
    font-size: 1rem;
    font-weight: bold;
    color: #1829f2; /* Green for "Today" */
    position: absolute;
    top: -24px; /* Position above the box */
    text-align: center;
}

.day-box {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px; /* Adjust box width */
    height: 72px; /* Adjust box height */
    border: 1px solid #1f65fc; /* Add border */
    border-radius: 15px; /* Rounded corners */
    background-color: #f9f9f9; /* Light background */
    cursor: pointer; /* Pointer cursor */
    text-align: center;
    color: #333; /* Default text color */
    font-family: Arial, sans-serif;
    padding: 12px;
}

    .day-box.today {
        background-color: #e6f7ff; /* Highlight for "Today" */
        border-color: #007BFF; /* Blue border for "Today" */
        color: #007BFF; /* Blue text for "Today" */
        font-weight: normal;
    }

.day-name {
    font-size: 0.9rem;
    color: #1f65fc; /* Subdued color for day names */
}

.day-date {
    font-size: 1rem;
    font-weight: 700;
    color: #1f65fc;
}


.schedule-container {
    margin-top: 20px;
    padding: 10px;
    font-family: Arial, sans-serif;
}

.schedule-box {
    border: 4px solid #ccc;
    border-radius: 10px;
    margin-bottom: 10px;
    padding: 10px;
    background-color: #f9f9f9;
}

    .schedule-box.assigned {
        border-color: #007BFF;
        background-color: #E6F7FF;
        color: #007BFF;
    }

    .schedule-box.off {
        border-color: #DC3545;
        background-color: #FDEDEC;
        color: #DC3545;
    }

    .schedule-box.available {
        border-color: yellow;
        background-color: white;
        color: black;
    }

/* Responsive scaling for very small screens */
@media (max-width: 420px) {
    .user-name { font-size: 1rem; }
}






