/* Toast Animations */
@keyframes toast-in {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes toast-out {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.toast-animate-in {
    animation: toast-in 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.toast-animate-out {
    animation: toast-out 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Base Toast Styles */
.toast-base {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 1rem;
    border-width: 1px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    min-width: 280px;
    max-width: 24rem;
    pointer-events: auto;
}

/* Confirm Modal Backdrop Blur */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background-color: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(4px);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}