/*******************************************
 * Bulle principale (tooltip)
 *******************************************/
 .introjs-tooltip {
    background-color: #fff;
    color: #333;
    border: none;
    border-radius: 25px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue",
                 "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell,
                 "Open Sans", sans-serif;
    font-size: 15px;
    padding: 16px;
    max-width: 320px;
  }
  
  /*******************************************
   * En-tête de la tooltip
   *******************************************/
  .introjs-tooltipheader {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
  }
  
  /* Cercle numérotation (x / y) */
  .introjs-helperNumberLayer {
    background-color: #007AFF;
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  }
  
  /*******************************************
   * Titre de l'étape
   *******************************************/
  .introjs-tooltiptitle {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: #3157ff;
  }
  
  /*******************************************
   * Zone de texte
   *******************************************/
  .introjs-tooltipcontent {
    line-height: 1.5;
    margin-bottom: 8px;
    font-size: 14px;
  }
  
  /*******************************************
   * Barre de progression personnalisée
   *******************************************/
  .introjs-progress {
    position: relative;
    width: 100%;
    height: 4px;
    background-color: #e9e9e9;
    border-radius: 4px;
    margin-bottom: 8px;
  }
  .introjs-progressbar {
    height: 100%;
    width: 0;
    background-color: #007AFF;
    border-radius: 4px;
    transition: width 0.3s ease;
  }
  
  /*******************************************
   * Boutons (Suivant, Précédent, Fermer, etc.)
   *******************************************/
  .introjs-button, .introjs-skipbutton,
  .introjs-prevbutton, .introjs-nextbutton {
    background: #007AFF;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 14px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    margin-right: 4px;
    transition: background-color 0.2s ease;
  }
  .introjs-button:hover,
  .introjs-skipbutton:hover,
  .introjs-prevbutton:hover,
  .introjs-nextbutton:hover {
    background-color: #005BB5;
  }
  
  /* Bouton skip / done plus discret si besoin */
  .introjs-skipbutton, .introjs-donebutton {
    background-color: #2a67ff; /* gris par défaut */
  }
  .introjs-skipbutton:hover, .introjs-donebutton:hover {
    background-color: #555;
  }
  
  /*******************************************
   * Overlay (halo) autour de l'élément ciblé
   *******************************************/
  .introjs-helperLayer,
  .introjs-fixedTooltip,
  .introjs-tooltipReferenceLayer {
    background-color: rgba(0,0,0,0.35) !important; 
  }
  
  /*******************************************
   * Responsive: sur mobile, la bulle est plus large
   *******************************************/
  @media (max-width: 600px) {
    .introjs-tooltip {
      width: 90% !important;
      max-width: none;
      left: 5% !important;
    }
  }
  