/* Der Hauptcontainer für die Ankündigung */
.container-anz {
    background-color: #fff9f9; /* Ein ganz sanfter, warmer Hintergrundton */
    border-top: 5px solid #d9534f; /* Signalrot oben (für Aufmerksamkeit) */
    border-bottom: 5px solid #4caf50; /* Italienisches Grün unten */
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    padding: 30px 20px;
    margin: 25px auto;
    max-width: 900px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Sanfter Schatten für Tiefe */
    text-align: center; /* Zentriert alle Texte und den Button */
    transition: all 0.3s ease;
}

/* Die Überschrift (z.B. "Wegen Urlaub Geschlossen") */
.container-anz h2 {
    color: #c9302c; /* Ein sattes Rot für die Headline */
    font-family: 'Dosis', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Der Textbereich (Spalte: content) */
.container-anz p {
    color: #333333;
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 750px;
    margin: 0 auto 20px auto;
    font-family: sans-serif;
}

/* Der "Alles klar" Button */
.container-anz .btn-success {
    background-color: #4caf50; /* Pizza-Grün */
    border-color: #4caf50;
    color: #ffffff;
    font-weight: bold;
    padding: 10px 25px;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

/* Hover-Effekt für den Button */
.container-anz .btn-success:hover {
    background-color: #43a047;
    border-color: #43a047;
    transform: translateY(-1px); /* Leichtes Abheben beim Drüberfahren */
}

/* Klick-Effekt für den Button */
.container-anz .btn-success:active {
    transform: translateY(1px);
}