/* Upgraded Toast Notification System (Impressive & Large) */
.toast-container {
    position: fixed;
    top: 40px;
    right: 40px;
    z-index: 10000;
    pointer-events: none;
}

.toast {
    min-width: 300px;
    max-width: 420px;
    background: #ffffff;
    padding: 20px 28px;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15), 0 10px 20px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 25px;
    pointer-events: auto;
    
    /* Animation base - Added scale for "Pop" effect */
    transform: translateX(120%) scale(0.8);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* Stronger decoration */
    border-left: 8px solid #0068ff;
}

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

/* Types */
.toast-success {
    border-left-color: #10b981;
    background: linear-gradient(to right, #f0fdf4, #ffffff);
}

.toast-error {
    border-left-color: #ef4444;
    background: linear-gradient(to right, #fef2f2, #ffffff);
}

.toast-warning {
    border-left-color: #f59e0b;
    background: linear-gradient(to right, #fffbeb, #ffffff);
}

/* Content */
.toast-icon {
    font-size: 2.2rem;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

.toast-success .toast-icon { color: #10b981; }
.toast-error .toast-icon { color: #ef4444; }
.toast-warning .toast-icon { color: #f59e0b; }

.toast-content {
    color: #111827;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
}

/* Enhanced Glassmorphism */
@supports (backdrop-filter: blur(15px)) {
    .toast {
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    .toast-success { background: rgba(240, 253, 244, 0.7); }
    .toast-error { background: rgba(254, 242, 242, 0.7); }
    .toast-warning { background: rgba(255, 251, 235, 0.7); }
}
