/* ══════════════════════════════════════════
   Toast Notifications - AlGraphy Design System
   ══════════════════════════════════════════ */

#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    min-width: 280px;
    max-width: 400px;
    padding: 15px 20px;
    border-radius: 12px;
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    cursor: pointer;
}

.toast.show {
    transform: translateX(0);
}

.toast i {
    font-size: 1.2rem;
}

/* Types */
.toast-success {
    border-left: 5px solid #10b981;
}
.toast-success i {
    color: #10b981;
}

.toast-error {
    border-left: 5px solid #ef4444;
}
.toast-error i {
    color: #ef4444;
}

.toast-info {
    border-left: 5px solid #3b82f6;
}
.toast-info i {
    color: #3b82f6;
}

/* Close animation */
.toast.fade-out {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.3s ease;
}
