/* assets/css/utilities.css */

/* ------------------------------------------------------------------
   Classes utilitaires
   ------------------------------------------------------------------ */
.text-center { text-align: center !important; }
.mt-1        { margin-top: 0.5rem !important; }
.mb-1        { margin-bottom: 0.5rem !important; }
.p-1         { padding: 0.5rem !important; }
.hidden      { display: none !important; }
.flex-center {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

/* ------------------------------------------------------------------
   Badges
   ------------------------------------------------------------------ */
.badge {
  display: inline-block;
  padding: 0.25em 0.5em;
  border-radius: 4px;
  font-size: 0.85rem;
}
.badge--success { background: #d1e7dd; color: #0f5132; }
.badge--muted   { background: #e2e3e5; color: #6c757d; }
