.calendar-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #ffffff;
    margin-bottom: 10px;
    transition: background-color 0.3s ease;
}

.calendar-item:hover {
    background-color: #e6e6e6;
}

.calendar-item.blocked {
    background-color: #a51616;
    color: #e3e3e3;
    cursor: not-allowed;
}

.calendar-item.blocked:hover {
    background-color: #a51616;
}

.calendar-day {
    font-weight: bold;
    flex-grow: 1;
    margin-right: 15px; /* Abstand zwischen dem Text und dem Select-Element */
}

.time-select {
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
    width: 150px; /* Gleiche Breite für alle Select-Elemente */
    box-sizing: border-box;
}

.time-select:disabled {
    background-color: #f0f0f0;
    cursor: not-allowed;
}