/* Toast Notification */
#toast-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20000;
    width: 90%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    background: #fff;
    color: #333;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    animation: toastIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: all 0.3s ease;
    border-left: 5px solid #ddd;
    pointer-events: auto;
}

.toast.success { border-left-color: #2ecc71; }
.toast.error { border-left-color: #e74c3c; }
.toast.warning { border-left-color: #f1c40f; }
.toast.info { border-left-color: #3498db; }

.toast i { font-size: 1.2rem; }
.toast.success i { color: #2ecc71; }
.toast.error i { color: #e74c3c; }
.toast.warning i { color: #f1c40f; }
.toast.info i { color: #3498db; }

.toast.fade-out {
    opacity: 0;
    transform: translateY(-20px) translateX(-50%) scale(0.9);
}

@keyframes toastIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
