/* Toast Notification */
#toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    pointer-events: auto;
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

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

.toast i {
    font-size: 20px;
    flex-shrink: 0;
}

.toast-success {
    background: linear-gradient(135deg, #10B981, #059669);
}

.toast-error {
    background: linear-gradient(135deg, #DC2626, #B91C1C);
}

.toast-info {
    background: linear-gradient(135deg, #1E3A8A, #172E6E);
}

.toast-warning {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: #1E3A8A;
}
