/* Last Updated: 02.08.2025 at 00:58 (CEST) */
/* =======================================================
   Toast Notifications
   Provides global toast notification styling
   ======================================================= */

#toast-container {
    position: fixed;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 10000;
}

.toast {
    background-color: var(--petuja-blue-dark);
    color: #fff;
    padding: 0.6rem 1rem;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.toast.fade-out {
    opacity: 0;
    transform: translateX(100%);
}
