/* Datum- und Uhrzeit-Container */
.date-time-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 10px 20px;
    background-color: #fdf5e6;
    border: 1px solid #d2b48c;
    border-radius: 5px;
    font-size: 18px;
    color: #8b4513;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 10;
}

.current-date,
.current-time {
    margin: 0; /* Entfernt Standardabstand */
}

/* Navigations-Container für Datum */
.navigation-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

/* Navigation-Buttons */
.nav-button {
    padding: 10px 15px;
    background-color: #8b4513; /* Dunkelbraun */
    color: #fff; /* Weißer Text */
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
}

.nav-button:hover {
    background-color: #a0522d; /* Hellbraun */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Tieferer Schatten */
}

.nav-button:focus {
    outline: 2px solid #d2b48c; /* Fokusrahmen in Hellbraun */
}

/* Zentrale Benachrichtigungen mit fester Position */
.notification-container {
    position: fixed; /* Fixiert die Benachrichtigung */
    top: 20px; /* Abstand von oben */
    left: 50%; /* Zentriert horizontal */
    transform: translateX(-50%); /* Korrigiert die Zentrierung */
    z-index: 1000; /* Stellt sicher, dass die Benachrichtigung über anderen Elementen liegt */
    padding: 15px 20px; /* Innenabstand */
    max-width: 800px; /* Breite begrenzen */
    border-radius: 8px; /* Abgerundete Ecken */
    font-size: 16px; /* Einheitliche Schriftgröße */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Dezenter Schatten */
    display: none; /* Standardmäßig ausgeblendet */
    transition: all 0.3s ease-in-out; /* Sanfte Übergänge */
}

/* Erfolgsnachrichten */
.notification-success {
    background-color: #dff0d8; /* Sanftes Grün */
    color: #3c763d; /* Dunkleres Grün für Text */
    border: 1px solid #c3e6cb; /* Passender Rand */
}

/* Fehlermeldungen */
.notification-error {
    background-color: #f8d7da; /* Sanftes Rot */
    color: #721c24; /* Dunkleres Rot für Text */
    border: 1px solid #f5c6cb; /* Passender Rand */
}

/* Informationsnachrichten */
.notification-info {
    background-color: #d9edf7; /* Sanftes Blau */
    color: #31708f; /* Dunkleres Blau für Text */
    border: 1px solid #bce8f1; /* Passender Rand */
}


/* Erfolgsnachrichten */
.notification-success {
    background-color: #dff0d8; /* Sanftes Grün */
    color: #3c763d; /* Dunkleres Grün für Text */
    border: 1px solid #c3e6cb; /* Passender Rand */
}

/* Fehlermeldungen */
.notification-error {
    background-color: #f8d7da; /* Sanftes Rot */
    color: #721c24; /* Dunkleres Rot für Text */
    border: 1px solid #f5c6cb; /* Passender Rand */
}

/* Info-Nachrichten */
.notification-info {
    background-color: #d9edf7; /* Sanftes Blau */
    color: #31708f; /* Dunkleres Blau für Text */
    border: 1px solid #bce8f1; /* Passender Rand */
}

/* Animation für sichtbare Benachrichtigungen */
.notification-container.show {
    display: block; /* Sichtbar machen */
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Haupt-Container mit zwei Spalten */
.two-columns {
    display: flex;
    gap: 20px; /* Abstand zwischen den beiden Containern */
}

/* Linker und rechter Container */
.left-container,
.right-container {
    flex: 1; /* Beide Container nehmen gleich viel Platz ein */
    padding: 20px;
    background-color: #f7e4d4; /* Helleres Beige */
    border: 1px solid #d2b48c;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    color: #4a3b31; /* Dunkelbrauner Text */
    overflow-y: auto; /* Vertikales Scrollen bei Überlauf */
    max-height: 80vh; /* Begrenzung der maximalen Höhe */
}

/* Weitere spezifische Stile ... */
