.date-container {
    width: 60px;
    min-width: 60px;
    height: 60px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-family: Arial, sans-serif;
    border: 1px solid white;
    position: relative;
}

.date-container.use-theme {
    border: 1px solid var(--sg-calvoerde-on-background-color);
    color: var(--sg-calvoerde-on-background-color);
}

.date-container .month {
    font-size: 12px;
    position: absolute;
    top: 0;
    background-color: white;
    color: #423c44;
    width: 100%;
    text-align: center;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    padding: 2px 0;
}


.date-container .month.use-theme {
    color: var(--sg-calvoerde-background-color);
    background-color: var(--sg-calvoerde-on-background-color);
}

.date-container .day {
    font-size: 16px;
    position: absolute;
    bottom: 6px;
}
