  .tutorial-tooltip {
    position: fixed;
    max-width: 250px;
	visibility:hidden;
    background: white;
    border: 1px solid #999;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    padding: 12px;
    font-family: sans-serif;
    z-index: 8;
	transform:translateX(-100%);
  }

  .tutorial-tooltip h4 {
	font-family: dream-regular;
    margin: 0 0 6px 0;
    font-size: 18px;
    color: #333;
  }

  .tutorial-tooltip p {
	font-family: dream-regular;
    margin: 0;
    font-size: 16px;
    color: #555;
  }

  /* Flèche à gauche du popup */
  .tutorial-tooltip::before {
    content: "";
    position: absolute;
    top: 50%; /* décale la flèche verticalement */
	transform: translateY(-50%);
    right: -8px; /* place la flèche à gauche du popup */
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid white; /* couleur du fond */
	
  }

  /* Bord de la flèche (contour) */
  .tutorial-tooltip::after {
    content: "";
    position: absolute;
    top: 50%;
	transform: translateY(-50%);
    right: -9px;
    width: 0;
    height: 0;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 9px solid #999; /* même couleur que la bordure */
  }