body {
    display: flex;
    align-items: center;
    flex-direction: column;
    user-select: none;
}

#calendar-wrapper {
    background-color: rgb(245, 244, 244);
    padding: 10px;
    width: 600px;
}

.calendar-container-head {
    display: flex;
}

.calendar-container-head-itm {
    width: 14%;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    user-select: none;
}

.calendar-container-body {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.calendar-container-body-itm {
    width: 14%;
    text-align: center;
    font-size: 18px;
    font-weight: normal;
    user-select: none;
    margin: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.calendar-container-body-itm-date {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s ease-in-out;
    position: relative;
}

.calendar-container-body-itm-date.active {
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    font-weight: bold;
    background-color: rgba(255, 0, 0, 0.603);
    color: #fff;
}

.calendar-controls {
    margin-bottom: 10px;
    padding-bottom: 10px;
    box-shadow: 0 2px rgb(240, 238, 238);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
}

.calendar-controls-right span {
    cursor: pointer;
}

.calendar-controls-right .iconify {
    cursor: pointer;
}

.calendar-controls-right .iconify:hover {
    color: red;
}