/* Bandeau conteneur (facultatif) */
.custom-tabs .tab-container {
    border-bottom: 1px solid #e5e7eb;
  }
  
  /* Onglets (style normal) */
  .custom-tabs .tab.custom-tab {
    height: 36px;              /* hauteur type navigateur */
    line-height: 36px;         /* centrage vertical du label */
    padding: 0 14px;           /* marge latérale */
    display: inline-flex;      /* rend le centrage vertical fiable */
    align-items: center;
    background: #f7f7f7;
    color: #374151;
    border: 1px solid #ddd;
    border-bottom: none;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    margin-right: 4px;
  }
  
  /* Onglet actif */
  .custom-tabs .tab.custom-tab--selected {
    background: #fff;
    color: #111827;
    border: 1px solid #bbb;
    border-bottom: 2px solid #00A3E0;  /* soulignement actif (Lux bleu) */
    font-weight: 600;
  }
  
  /* Optionnel : au survol */
  .custom-tabs .tab.custom-tab:hover {
    background: #f0f3f6;
  }
  
  