.tabs {
  margin: 1.5rem 0;
}

/* Barre d’onglets */
.tabs-nav {
  display: flex;
  justify-content: space-around;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.tab-btn {
  padding: 0.4rem 0.8rem;
  background: blue;
  color: white !important;
  text-decoration: none;
  font-size: 0.95rem;
}

/* Tous les panneaux cachés par défaut */
.tabs-content .tab-panel {
  display: none;
}

/* Si aucun target → afficher le premier */
.tabs-content:not(:has(.tab-panel:target)) .tab-panel:first-of-type {
  display: block;
}

/* Afficher uniquement le panneau ciblé */
.tabs-content .tab-panel:target {
  display: block;
}
