#timeList {
    list-style-type: none;
    padding: 0;
    display: flex;       /* Aktiviere Flexbox */
    flex-wrap: wrap;     /* Erlaube das Umbrechen der Elemente */
    gap: 10px;           /* Setze einen Abstand zwischen den Elementen */
    justify-content: start; /* Beginne die Ausrichtung der Elemente von links */
}

#timeList li {
    padding: 5px 10px;
    cursor: pointer;
    border: 1px solid #ddd;
    background-color: #ffffff;
    margin: 5px 0;
    border-radius: 6px;
    transition: background-color 0.3s;
}

#timeList li.selected {
    background-color: #E30613;
    color: white;
}