/* EFV Toast System - Professional Glassmorphism UI */
#toast-container {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.efv-toast {
    pointer-events: auto;
    background: rgba(13, 17, 28, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    min-width: 320px;
    max-width: 450px;
    transform-origin: right center;
    animation: toastIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    cursor: pointer;
}

.efv-toast i {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.efv-toast.success i {
    color: #22c55e;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

.efv-toast.error {
    border-color: rgba(239, 68, 68, 0.3);
}

.efv-toast.error i {
    color: #ef4444;
    text-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
}

.efv-toast.info i {
    color: #3b82f6;
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.efv-toast span {
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.5px;
}

@keyframes toastIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateX(50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateX(0);
    }
}

@keyframes toastOut {
    from {
        opacity: 1;
        transform: scale(1) translateX(0);
    }
    to {
        opacity: 0;
        transform: scale(0.8) translateX(100px);
    }
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    #toast-container {
        top: 20px;
        right: 20px;
        left: 20px;
    }
    .efv-toast {
        min-width: 100%;
    }
}
