
/* Modern Glassmorphism Toast Styling - Futuristic & Premium */
.toast-container { 
    z-index: 1060; 
}

.toast.futuristic-toast {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.futuristic-toast .toast-header {
    background: rgba(255, 255, 255, 0.3) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 18px;
    font-weight: 600;
}

.toast.futuristic-toast .toast-body {
    padding: 16px 18px;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.5;
}

/* Color states */
.toast.text-danger .toast-header { 
    color: #d32f2f !important; 
}

.toast.text-success .toast-header { 
    color: #00897b !important; 
}

/* Entrance animation */
@keyframes slideUp {
    from { 
        transform: translateY(100px); 
        opacity: 0; 
    }
    to { 
        transform: translateY(0); 
        opacity: 1; 
    }
}

.toast.show { 
    animation: slideUp 0.5s ease-out forwards; 
}
