.day.grey {
    color: grey;
}

.day.red {
    color: red;
}

.day.halfred {
    color: rgb(206, 132, 132);
}

.day {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 75px;
    justify-content: center;
    border:1px solid var(--border-color);
    border-radius: var(--radius-small);
    font-size: 20px;
    padding-bottom: 5px;
}

.weekday {
    font-size: 0.6em;
    padding-left: 5px;
    padding-right: 5px;
}

.time {
    font-weight: bold;
    padding: 0;
    margin: 0;
    font-size: 1.2em;
    color: var(--font-color-dark);
}

.date,.daynumber {
    font-size: 3rem;
    font-weight: 700;
}

