.TimePage {
    gap: 18px;
}

.TimeTable td {
    vertical-align: middle;
}

.TimeTable input[type="time"],
.TimeTable input[type="number"],
.TimeTable select,
.TimeTable input[type="text"] {
    min-height: 36px;
    height: 36px;
    padding: 6px 8px;
}

.TimeTable .worked-hours {
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
}

/* Zeiterfassung – farbliche Hervorhebungen */
.TimeDayRow {
    background: #ffffff;
    transition: background 0.2s ease;
}

/* Wochenende */
.TimeRow--weekend {
    background: #fdf2f2;
    border-left: 3px solid #e57373;
}
.TimeRow--weekend td {
    color: #5d3a3a;
}

/* Feiertag */
.TimeRow--holiday {
    background: #fff8e1;
    border-left: 3px solid #ffb74d;
}
.TimeRow--holiday td {
    color: #5d4a2b;
}

/* Feiertag, der gleichzeitig auf ein Wochenende fällt */
.TimeRow--weekend.TimeRow--holiday {
    background: #fef0f0;
    border-left: 3px solid #ef9a9a;
}