/* public/css/frontend.css */
.business-hours-list {
    max-width: 600px;
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.business-hours-day {
    margin-bottom: 10px;
    padding: 10px;
    border-bottom: 1px solid #eee;
    display: flex; /* Neue Flexbox-Struktur */
    flex-wrap: wrap;
}

.business-hours-day h4 {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 16px;
}

/* Styling für den aktuellen Tag */
.business-hours-day.current-day {
    background-color: #f0f0f0;
    border-left: 3px solid #007bff;
    padding-left: 10px;
    margin: 5px 0;
}

.business-hours-day.current-day h4 {
    color: #007bff;
    font-weight: bold;
}

/* Neue Styles für das Layout */
.day-name {
    flex: 0 0 120px;
    font-weight: bold;
    padding: 5px 10px;
    color: #333;
}

.hours-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 5px 0;
}

.hours-row {
    padding: 0 10px;
    color: #666;
}

.business-hours-day.current-day .hours-row {
    color: #0073aa;
    font-weight: bold;
}

.hours-row.closed {
    color: #666;
    font-style: italic;
}

.location-name {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0073aa;
    color: #23282d;
    width: 100%;
}

/* Urlaubszeiten Styling */
.business-vacation-list {
    margin-top: 30px;
    padding: 15px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    color: #d32f2f;
    font-weight: bold;
}

.business-vacation-list h3 {
    margin-top: 0;
    color: #23282d;
    border-bottom: 2px solid #d32f2f;
    padding-bottom: 5px;
}

.business-vacation-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.business-vacation-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.business-vacation-list li:last-child {
    border-bottom: none;
}

.vacation-period {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.vacation-period:last-child {
    border-bottom: none;
}

.vacation-period .dates {
    font-weight: bold;
    color: #d32f2f;
}

.vacation-period .description {
    margin-left: 5px;
    color: #333;
}

.vacation-period .substitute {
    margin-left: 5px;
    color: #666;
    font-style: italic;
}

/* Responsive Design */
@media screen and (max-width: 600px) {
    .business-hours-list {
        padding: 0 15px;
    }

    .business-hours-day {
        padding: 15px 10px;
        flex-direction: column; /* Stapelt Elemente bei kleinen Bildschirmen */
    }

    .day-name {
        flex: none;
        margin-bottom: 5px;
    }

    .hours-container {
        padding-left: 10px;
    }

    .business-hours-day.current-day {
        margin: 10px -15px;
        padding: 15px 20px;
    }
}
