.calendar {
    width: 100%;
    min-height: 460px;
    height: auto;
    text-align: center;
    background-color: #fff;
}

.current-month {
    font-size: 20px;
}

.prev-month, .next-month {
    background: none;
    border: none;
    color: #1A202C;
    font-size: 20px;
    cursor: pointer;
}

.weekday-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    color: #596780;
    font-weight: bold;
}

.weekday {
    padding: 10px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0px;
    padding: 0px;
}

.day {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    aspect-ratio: 1 / 1;
}

.selected-day {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: purple;
    color: #fff;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
}

.disabled {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    aspect-ratio: 1 / 1;
    color: #ccc;
}
