.bloc-tableau {
  max-width: 620px; /* largeur max identique au tableau */
  margin: 0 auto;   /* centre le bloc sur la page */
}

.tabbullht {
  width: 100%;
  border-collapse: collapse;
}

.tabbullht td {
  border: 1px solid #ddd;
  padding: 10px;
  vertical-align: middle;
}

.tabbullht td:first-child {
  text-align: left;
  font-weight: bold;
  width: 45%;
  background: #f4f4f4;
}

.tabbullht td:last-child {
  text-align: left;
  width: 55%;
}

.h2-aligne-gauche {
  margin: 0 0 12px 0; /* marge en bas uniquement */
  padding: 0;
  text-align: left;
  /* PAS de marge ou padding à gauche */
}

#block-bull-wrapper {
  max-width: 990px;
  margin: 0 auto;
  padding: 20px 25px;
  box-sizing: border-box;
  text-align: center;
  color: white;
  font-size: 18px;
}

#block-bull {
  display: flex;
  align-items: center;
  justify-content: center;
}

#block-bull .logo-bull {
  width: 64px;
  height: 65px;
  object-fit: contain;
  display: block;
  padding-right: 10px; /* Espace précis */
  margin: 0;
}


#block-bull h1 {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  letter-spacing: -0.01em; /* Moins d’espace entre les lettres */
  line-height: 1.1;
  color: white;
  display: block;
  text-shadow:
    0 1px 1px rgba(0, 0, 0, 1.1),
    0 3px 3px rgba(0, 0, 0, 0.4),
    0 5px 5px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}
/* On applique le scaleX uniquement sur le texte, pas sur la boîte du H1 */
#block-bull h1 span {
  display: inline-block;
  transform: scaleX(0.32) scaleY(3); /* Plus étroit ET plus haut */
  line-height: 1.1; /* Par défaut 1.1, augmente pour plus d’espace */
}


.block-bull-desc {
  margin-top: 18px;
  margin-bottom: 0;
  font-size: 1.1rem;
  color: white;
}

/* Responsive */
@media (max-width: 600px) {
  #block-bull-wrapper {
    padding: 15px 10px;
    font-size: 16px;
  }
  #block-bull .logo-bull {
    width: 38px;
    height: 39px;
    padding-right: 8px;
  }
  #block-bull h1 {
    font-size: 1.3rem;
  }
  .block-bull-desc {
    font-size: 1rem;
    margin-top: 12px;
  }
}

#block-footer{
  max-width: 990px;
  margin: 0 auto;
  }


.btorange {
  min-width: 130px;
  height: 40px;
  background: #FF904C;
  color: #fff;
  padding: 0 20px; /* 20px à gauche et droite, 0 en haut et bas */
  font-family: Arial, sans-serif;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  line-height: 40px; /* Centre verticalement le texte */
  text-decoration: none; /* Pas de soulignement */
  cursor: pointer;
  border: none;
  border-radius: 5px;
  outline: none;
  
  transition: background 0.3s, color 0.3s;
  display: inline-block;
  position: relative;
  z-index: 1;
}

/* Changement de couleur au survol */
.btorange:hover,
.btorange:focus {
  background: #ffe566;
  color: #000000;
}

/* Effet d'enfoncement au clic */
.btorange:active {
  top: 2px;
}






/* Tableau dimensions BULL */

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

table {
  border-collapse: collapse;
  width: 100%;
  text-align: center;
}

th, td {
  border: 1px solid #f0f0f0;
  padding: 10px;
  min-width: 80px;
}

thead th {
  background-color: #f58229;
  color: white;
  font-weight: bold;
}

.row-head {
  text-align: left;
  font-weight: bold;
  color: #f58229;
  background-color: #fff;
}

tbody td {
  background-color: #f8f8f8;
}

tbody td:not(:empty) {
  color: #555;
}



/* Tableau comparaison BULL */

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

.table-comparateur table {
  width: 100%;
  border-collapse: collapse;
}

.table-comparateur thead tr {
  background-color: #e0e0e0; /* Gris clair pour l’en-tête */
}

.table-comparateur th {
  font-weight: bold;
  color: #222; /* Texte gris foncé ou noir pour garantir la visibilité */
}

.table-comparateur th,
.table-comparateur td {
  border: 1px solid #555;    /* Bordures gris foncé */
  padding: 10px;
  text-align: left;
  background-color: #fff;    /* Fond blanc des cellules */
}

.table-comparateur th {
  font-weight: bold;
}


