/* toast-notifications.css - Premium Glassmorphic Toasts */

#toast-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
    width: auto;
    max-width: 90vw;
}

.success-toast, .error-toast, .info-toast {
    position: relative;
    padding: 14px 24px;
    border-radius: 50px;
    color: #ffffff;
    font-family: 'Outfit', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: auto;
    opacity: 0;
    transform: translateY(-20px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    direction: rtl;
    text-align: right;
}

.success-toast.show, .error-toast.show, .info-toast.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.success-toast {
    background: rgba(46, 213, 115, 0.25);
    border-color: rgba(46, 213, 115, 0.4);
    box-shadow: 0 8px 32px rgba(46, 213, 115, 0.2);
}

.error-toast {
    background: rgba(255, 71, 87, 0.25);
    border-color: rgba(255, 71, 87, 0.4);
    box-shadow: 0 8px 32px rgba(255, 71, 87, 0.2);
}

.info-toast {
    background: rgba(30, 144, 255, 0.25);
    border-color: rgba(30, 144, 255, 0.4);
    box-shadow: 0 8px 32px rgba(30, 144, 255, 0.2);
}

.success-toast i { color: #2ed573; font-size: 18px; }
.error-toast i { color: #ff4757; font-size: 18px; }
.info-toast i { color: #1e90ff; font-size: 18px; }

/* Mobile adjustments */
@media (max-width: 600px) {
    #toast-container {
        top: 10px;
        width: 95vw;
    }
    .success-toast, .error-toast, .info-toast {
        padding: 10px 18px;
        font-size: 14px;
    }
}
