/* ===== Componente Alert InkPages ===== */
.alert {
  border-radius: var(--radius);
  padding: 1em;
  margin-bottom: 1em;
  font-weight: 500;
  font-size: 1em;
}
.alert-success { background: #e8f5e9; color: var(--success); }
.alert-error { background: #ffebee; color: var(--error); }
.alert-warning { background: #fff8e1; color: var(--warning); }
.alert-info { background: #e3f2fd; color: var(--info); }
body.theme-dark .alert-success { background: #1b5e20; color: #a5d6a7; }
body.theme-dark .alert-error { background: #b71c1c; color: #ffcdd2; }
body.theme-dark .alert-warning { background: #ff6f00; color: #fffde7; }
body.theme-dark .alert-info { background: #0d47a1; color: #bbdefb; } 