/* Notification Container */
#notifications-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 50;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Grundlegende Notification Styles */
.notification {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-left: 6px solid; /* Dickere linke Border */
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    background-color: #f8f9fa; /* Heller Grundton */
    color: #333;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    min-width: 250px;
    max-width: 400px;
}

/* Sichtbare Notification */
.notification.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Typen von Notifications mit pastellfarbenem Hintergrund und farbiger Border */
.notification-success {
    border-left-color: #16a34a; /* Tailwind: green-600 */
    background-color: #dcfce7; /* Pastellgrün */
}

.notification-error {
    border-left-color: #dc2626; /* Tailwind: red-600 */
    background-color: #fee2e2; /* Pastellrot */
}

.notification-info {
    border-left-color: #2563eb; /* Tailwind: blue-600 */
    background-color: #dbeafe; /* Pastellblau */
}

.notification-warning {
    border-left-color: #f59e0b; /* Tailwind: amber-500 */
    background-color: #fef3c7; /* Pastellgelb */
}

/* Schließen-Button */
.notification-close {
    margin-left: auto;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    color: #555;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.notification-close:hover {
    opacity: 1;
}
