/* body {
    display: flex;
    background: #edecec;
    min-height: 100vh;
    padding: 0 10px;
    align-items: center;
    justify-content: center;
}

.calendar-container {
    width: 45vw;
    border-radius: 10px;
} */

.calendar-container header {
    display: flex;
    align-items: center;
    padding: 15px 20px 8px;
    justify-content: space-between;
}

.calendar-body {
    padding: 10px;
    min-height: 345px;
}

.calendar-body ul {
    list-style: none;
    flex-wrap: wrap;
    display: flex;
    text-align: center;
    justify-content: space-between;
}

.calendar-body .calendar-dates {
    margin-bottom: 10px;
    width: 100%;
}

.calendar-body li {
    /* width: calc(100% / 7); */
    height: 40px;
    line-height: 40px;
    font-size: 1em;
    position: relative;
    z-index: 1;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
    width: 13%;
    margin:2px;
}

.calendar-body .calendar-weekdays li {
    cursor: default;
    font-weight: 600;
    font-size: 1.1em;
}

.calendar-dates li.inactive {
    color: #aaa;
    cursor: default;
}

.calendar-dates li.active {
    color: #000000;
    font-weight: 700;
    background: #ddc4fd;
    border-radius: 5px;
    border: 1px solid blue;
}

.calendar-dates li.highlight {
    background: #0dcaf0;
    border: 2px solid #056946;
    border-radius: 5px;
    position: relative;
    z-index: 10;
    text-align: center;
    /* width: calc(100% / 7); */
    align-items: center;
    width: 13%;
    align-content: center;
}

.calendar-header {
    background-color: rgb(111 111 111 / 22%);
}


.hasRecs {
    background-color: rgba(187, 255, 138, 0.848) !important;
    border-radius: 10%;
    color: black !important;
    font-weight: 600;
    border: 1px solid green !important;
}