#notification-container {
    position: fixed;
    bottom: 24px;
    left: 30px;
    z-index: 9999;

    display: flex;
    flex-direction: column;
    gap: 10px;

    pointer-events: none;
}

/* Bubble Grunddesign */

.notification-bubble {
    min-width: 260px;
    padding: 14px 20px;

    background: var(--panel-bg);
    border-radius: 10px;

    border-left: 4px solid var(--accent-color);

    font-family: "Segoe UI", sans-serif;
    font-size: 14px;
    color: var(--text-main);

    box-shadow: var(--shadow-soft);

    pointer-events: auto;

    animation: slideInLeft 0.35s ease forwards;
}

/* Animation */

@keyframes slideInLeft {
    from {
        transform: translateX(-60px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Fade Out */

@keyframes fadeOutLeft {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(-60px);
        opacity: 0;
    }
}

/* Status Farben */

.success-bubble {
    border-left-color: #22c55e;
}

.error-bubble {
    border-left-color: #ef4444;
}

.info-bubble {
    border-left-color: #3b82f6;
}