/* Utilities — small single-purpose helpers so templates stay free of inline
   `style="..."` attributes (which a strict production CSP would block). */

/* Visibility */
.hidden {
  display: none !important;
}

/* Margin helpers (scale mirrors the spacing used across the views) */
.m-0 {
  margin: 0;
}
.mt-0 {
  margin-top: 0;
}
.mt-2 {
  margin-top: 14px;
}
.mt-3 {
  margin-top: 18px;
}
.mb-1 {
  margin-bottom: 8px;
}
.mb-2 {
  margin-bottom: 14px;
}
.mb-3 {
  margin-bottom: 18px;
}
.mt-4 {
  margin-top: 22px;
}
