/* ==========================================================================
   Toast Notification Styles
   ========================================================================== */

@keyframes toast-fade-in {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

#toast-container {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 10;
    display: flex;
    flex-direction: column-reverse;
    gap: 0.5rem;
    pointer-events: none;
}

.toast {
    position: relative;
    width: 300px;
    box-shadow: 11px 12px 7px 3px rgba(0, 0, 0, 0.3);
    animation: toast-fade-in 0.3s ease-out;
    pointer-events: auto;
}

.toast.error {
    background-color: rgb(253, 137, 137);
}
