.calendar-container {
    width: 95%;
    max-width: 95% !important;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-radius: 16px;
}

.calendar-header button {
    background: none;
    border: none;
    font-size: 14px;
    cursor: pointer;
}

.calendar-header #monthYear {
    font-size: 14px;
    font-weight: 500;
}

.calendar-days,
.calendar-dates {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    padding: 5px;
}

.calendar-days div {
    font-weight: 600;
    color: #24848c
}

.calendar-dates div {
    padding: 6px;
    margin: 2px;
    width: 26px;
    /* example width */
    height: 26px;
    /* equal height for circular shape */
    border-radius: 50%;
    /* makes it a circle */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    cursor: pointer;
}

.calendar-dates div.today {
    color: #24848c
}

.calendar-dates div.disabled {
    color: #ccc;
    pointer-events: none;
}

.calendar-dates div.selected {
    background-color: #24848c;
    color:#fff;
}

 #slotCont {
    max-height: 30vh;
    overflow-y: scroll;
}