.container {
    display: flex;
    grid-gap: 0 20px;
    user-select: none;
    flex-wrap: wrap;
    justify-content: center;
    overflow-y: auto;
}

.container svg {
    pointer-events: none;
}
.container .weekday {
    padding: 6px 16px;
}

.container .navigation {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

.container .navigation > button {
    cursor: pointer;
    border: none;
    background-color: transparent;
}

.container .weeks {
    display: grid;
    grid-template-columns: auto auto auto auto auto auto auto;
    grid-gap: 4px 0;
}

.container .weeks {
    margin-bottom: 10px;
    color: #94a3b8;
    font-size: 18px;
    font-weight: 700;
}

.container .weekday {
    text-align: center;
}

.container .weekday:first-child {
    color: #f87171;
}
.container .days {
    display: grid;
    grid-template-columns: auto auto auto auto auto auto auto;
    grid-gap: 4px 0;
}
.container .day {
    all: unset;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    outline: none;
    transition: all 260ms ease;
    padding: 6px 16px;
    color: rgba(0, 0, 0, 0.8);
}
.container .selected-day {
    background-color: #10b981;
    color: white;
    border-radius: 10px;
}

.container .selected-day:hover {
    background-color: #10b98159;
}

.container .selected-range {
    background-color: #e2e8f0;
}

.container .selected_day_1 {
    border-radius: 10px 0 0 10px;
    background-color: #10b981;
}

.container .selected_day_2 {
    border-radius: 0 10px 10px 0;
    background-color: #10b981;
}

.container .selected_day_1,
.container .selected_day_2 {
    color: white;
}

.container .current-month:hover {
    background-color: #10b98159;
}

.container .selected-rang:hover {
    border-radius: 0;
}
.container .prev-month,
.container .next-month {
    color: #cbd5e1;
}
.container .nowDay {
    font-weight: 600;
}
