.search-list-input {
    list-style-type: none;
    border-bottom: 0.5px solid black;
    cursor: pointer;
    text-align: center;
}

.search-list-input:hover {
    background-color: #da8cff;
}

.calendar-wekkdays div {
    display: flex;
    justify-content: center;
    padding: 0.1rem;
    font-weight: bold;
    font-size: 1.3rem;
    letter-spacing: 0.1rem;
    width: calc(100% / 7);
}

.calendar-days {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.calendar-days div {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.3rem;
    width: calc(100% / 7);
    height: 5rem;
    border: 1px solid rgb(211, 211, 211);
}

.prev-month,
.next-month {
    opacity: 0.2;
}

.calendar-days div:hover {
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#da8cff),
        to(#9a55ff)
    );
    color: white;
}

.selected-calendar {
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#da8cff),
        to(#9a55ff)
    );
    color: white;
}

.dreapta {
    margin-top: 0.4rem;
    font-size: 0.8rem;
    display: flex;
    justify-content: end;
    align-items: end;
}

.day-box {
    display: flex;
    flex-direction: column;
}
