.lightpick__day {
    display: flex;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    font-weight: bold;
    justify-content: center;
    align-items: center;
    border-radius: 15%;
    color: white;
}

    .lightpick__day.is-disabled {
        background-image: url("./calendar_non.svg");
        pointer-events: none;
    }

.is-summer {
    background-image: url("./calendar_sun.svg");
}

.is-winter {
    background-image: url("./calendar_snow.svg");
}

.lightpick__day.is-winter.is-blocked {
    background-image: url("./calendar_disposnow.svg");
}

.lightpick__day.is-summer.is-blocked {
    background-image: url("./calendar_disposun.svg");
}
