/**
 * Ethiora Net: Expert Messaging Styles
 * Glassmorphism Toasts & Notifications
 */

#expert-toast-container {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    pointer-events: none;
}

.expert-glass-toast {
    width: 380px;
    background: rgba(255, 255, 255, 0.85);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 1.25rem 1.5rem;
    transform: translateX(120%);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: all;
    overflow: hidden;
    position: relative;
}

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

.expert-glass-toast .toast-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.expert-glass-toast .toast-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 950;
    font-size: 0.9rem;
    color: #1e293b;
    letter-spacing: -0.3px;
    margin-bottom: 2px;
}

.expert-glass-toast .toast-message {
    font-weight: 650;
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.5;
}

/* Animations */
@keyframes toast-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.expert-glass-toast.pulse {
    animation: toast-pulse 2s infinite;
}
