/* Shared alert styles for consistent success/error messaging */
.alert{
  padding:12px 14px;
  border-radius:10px;
  margin:16px 0;
  border:1px solid transparent;
  font-weight:600;
}
.alert-success{
  background: rgba(34,197,94,0.12);
  border-color: rgba(34,197,94,0.28);
  color: #0f5132;
}
.alert-error{
  background: rgba(239,68,68,0.12);
  border-color: rgba(239,68,68,0.28);
  color: #7f1d1d;
}
/* Dark theme tweaks (theme.php sets data-theme) */
html[data-theme="dark"] .alert-success{ color:#b7f7d0; }
html[data-theme="dark"] .alert-error{ color:#ffd0d0; }
