/* ==========================================
   8. ANIMACIONES Y TOASTS
   ========================================== */

.toast {
    background: #111;
    color: #fff;
    padding: 12px 16px;
    border-radius: 8px;
    animation: fadeIn 0.3s forwards;
}

.toast.success {
  background: #28a745;
}

.toast.error {
  background: #dc3545;
}

.toast.info {
  background: #007bff;
}

