/* =========================================================
   Base typographique – esprit Roborain
   ========================================================= */

body {
  font-family: "Calibri Light", Calibri, Arial, sans-serif;
  font-size: 11pt;
  margin: 20px;
  background-color: #ffffff;
  color: #111;
}

/* =========================================================
   Conteneur principal
   ========================================================= */

.wrapper-central {
  max-width: 1000px;
  width: 100%;
  margin-left: 20px;
}

/* =========================================================
   En-tête (titre + bouton)
   ========================================================= */

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding-bottom: 6px;
  margin-bottom: 12px;

  border-bottom: 1px solid #ccc;
  max-width: 1000px;
}

/* Titre principal */
.header h1 {
  font-size: 14pt;
  font-weight: 600;
  margin: 0;
  padding: 0;
  line-height: 1.2;
}

/* Sous-titre / chemin */
.version {
  font-size: 10pt;
  color: #555;
  margin-top: 2px;
  font-style: italic;
}

/* =========================================================
   Boutons
   ========================================================= */

.btn {
  font-size: 10pt;
  padding: 4px 12px;
  border-radius: 6px;
  border: 1px solid #999;
  background-color: transparent;
  cursor: pointer;
  white-space: nowrap;
  height: 28px;
}

.btn:hover {
  background-color: #f0f0f0;
}

/* =========================================================
   Cartes (cadres d’information)
   ========================================================= */

.card {
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fdfdfd;
  padding: 10px 16px;
  box-sizing: border-box;
  margin-top: 12px;
  max-width: 1000px;
}

.card-title {
  margin: 0 0 6px 0;
  font-size: 11pt;
  font-weight: 600;
}

/* Valeur mise en avant */
.big {
  font-size: 14pt;
  font-weight: 500;
  margin: 0;
}

/* Texte secondaire */
.muted {
  color: #666;
  font-size: 10pt;
}

/* =========================================================
   Tableau (historique)
   ========================================================= */

.table-wrap {
  overflow-x: auto;
}

table {
  border-collapse: collapse;
  font-family: "Calibri Light", Calibri, Arial, sans-serif;
  font-size: 11pt;
  margin-top: 10px;
  width: 100%;
  max-width: 1000px;
}

table th,
table td {
  border: 1px solid #ccc;
  padding: 6px 8px;
  text-align: left;
  vertical-align: middle;
}

/* En-tête du tableau */
thead th {
  font-weight: 600;
  background-color: #ffffff;
  border-bottom: 1px solid #ccc;
}


/* =========================================================
   Ajustements mobile – tableau historique
   ========================================================= */

@media (max-width: 600px) {

  body {
    margin: 10px;
  }

  .wrapper-central {
    margin-left: 0;
  }

  .header {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .btn {
    align-self: flex-start;
  }

  /* --- Tableau historique : réduction police et padding --- */
  table {
    font-size: 9pt;          /* ↓ taille police */
  }

  table th,
  table td {
    padding: 4px 6px;        /* ↓ marges internes */
  }
}
