/* ===================================
   CLASSES UTILITAIRES COMMUNES
   =================================== */

/* Alignement du texte */
.text-center {
  text-align: center;
}

/* Couleurs */
.green-text {
  color: var(--green);
}

.white-text {
  color: white;
}

/* Marges */
.mt-2 {
  margin-top: 2em;
}

.mt-3 {
  margin-top: 3em;
}

.mb-2 {
  margin-bottom: 2em;
}

/* Boxes / Cards communes */
.info-box {
  background: #f9f9f9;
  padding: 25px;
  margin: 30px 0;
  border-left: 5px solid var(--green);
  border-radius: 5px;
}

.info-box h2,
.info-box h3 {
  color: var(--green);
  margin-top: 0;
}

.warning-box {
  background: #fff3cd;
  padding: 15px;
  border: 2px solid #ffc107;
  border-radius: 4px;
  margin: 20px auto;
}

.warning-box strong {
  color: #856404;
}

.danger-text {
  color: #d32f2f;
  font-weight: bold;
}

.error-text {
  color: #d9534f;
}

/* Listes stylisées */
.styled-list {
  line-height: 1.8;
  font-size: 1.05em;
}

.styled-list li {
  margin-bottom: 10px;
}

/* Images responsives */
.responsive-img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* Conteneurs centrés */
.container-centered {
  max-width: 800px;
  margin: 20px auto;
}

.container-small {
  max-width: 600px;
  margin: 0 auto;
}

.container-medium {
  max-width: 700px;
  margin: 0 auto;
}
