
/* Notification Toast */
.notification-container {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    pointer-events: none;
}

.notification-toast {
    background-color: var(--bg-card);
    border-left: 4px solid var(--color-accent);
    color: var(--color-text-primary);
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 250px;
    max-width: 350px;
    animation: slideIn 0.3s ease forwards;
    pointer-events: auto;
}

.notification-toast.success {
    border-left-color: hsl(145, 60%, 45%);
}

.notification-toast.error {
    border-left-color: hsl(0, 70%, 60%);
}

.notification-toast i {
    font-size: 1.2rem;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

