/* ═══════════════════════════════════════════════════════════
   style_commun.css — 4Recyclage · styles globaux
   ═══════════════════════════════════════════════════════════ */

/* ── Reset & base ── */
*, *::before, *::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background-color: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Nouvelle navbar (rc-nav) ── */
/* Styles dans base.html directement — rien à surcharger ici */

/* ── Boutons Bootstrap (conservés pour le dashboard collectivités) ── */
.btn-success {
  background-color: #00BF63;
  border-color: #00BF63;
  font-weight: 700;
}
.btn-success:hover {
  background-color: #7ED957;
  border-color: #7ED957;
}
.btn-outline-success {
  color: #00BF63;
  border-color: #00BF63;
  font-weight: 700;
}
.btn-outline-success:hover {
  background-color: #00BF63;
  color: #fff;
}

/* ── Footer (conservé) ── */
footer {
  background: #013759;
  color: #fff;
}

/* ── Utilitaires globaux ── */
main {
  flex: 1;
}
