/* Grundgestaltung des Widgets */
#opening-widget {
    max-width: 400px;
    background: #ffffff;
    padding: 25px;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-family: 'main', sans-serif;
    color: #333;
    margin: 20px auto;
}

/* Überschrift */
#opening-widget h3 {
    margin-top: 0;
    font-size: 22px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
    color: #1a1a1a;
}

/* Status-Anzeige */
#status {
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 20px;
    display: inline-block;
}

.status-open { background-color: #e8f5e9; color: #2e7d32; }
.status-closed { background-color: #ffebee; color: #c62828; }

/* Die Liste der Zeiten */
#opening-times {
    list-style: none; 
    padding: 0;
    margin: 0;
}

#opening-times li {
    display: flex;
    justify-content: flex-start; /* Geändert von space-between für Spalten-Optik */
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f9f9f9;
    font-size: 14px;
    list-style: none; 
}

#opening-times li:last-child {
    border-bottom: none;
}

/* Wochentag Spalte (Fixe Breite für bündige Uhrzeiten) */
#opening-times li span:first-child {
    width: 100px; /* Alle Tage bekommen genau 100px Platz */
    font-weight: 600;
    color: #555;
    flex-shrink: 0; /* Verhindert, dass der Tag gestaucht wird */
}

/* Uhrzeit Spalte */
#opening-times li span:last-child {
    flex-grow: 1;
    text-align: left;
    color: #333;
}

/* Hervorhebung des heutigen Tages */
#opening-times li.today {
    background-color: #f8f9ff;
    font-weight: bold;
    color: #000;
    padding-left: 10px;
    margin-left: -10px; /* Gleicht das Padding aus, damit es bündig bleibt */
    padding-right: 10px;
    border-radius: 5px;
    border-left: 4px solid #4a90e2;
}

/* Fußzeile */
#opening-widget p {
    font-size: 13px;
    color: #888;
    margin-top: 20px;
    line-height: 1.4;
    font-style: italic;
}