     .Boussole-container {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 170px;
      height: 170px;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.3);
      z-index: 9999;
      padding: 10px;
      display: none;
      text-align: center;
      background-image: url('img/boussole.png');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      background-color: transparent;
    }

    .label-direction {
      font-size: 13px;
      font-weight: bold;
      margin-top: -22px;
      background-color: #ffffff;
      color: #000000;
    }

    .boussole {
      width: 170px;
      height: 170px;
      margin: 5px auto;
      border-radius: 50%;
      background: transparent;
    }

.aiguille {
    position: absolute;
    width: 0;
    height: 0;
    /* Ajustement pour centrer l'aiguille par rapport à la boussole */
    top: calc(92px - 100px + 5px);   /* moitié du bord-bottom */
    left: calc(92px - 6px + 5px);    /* moitié de border-left/right */

    /* Pivot pour rotation */
    transform-origin: bottom center;
    transition: transform 0.5s ease;

    /* Triangle rouge : plus épais et plus long */
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 100px solid red;
}

    .centre {
      position: absolute;
      width: 6px;
      height: 6px;
      background: #333;
      border-radius: 50%;
      top: 92px;
      left: 94px;
    }

    .label-angle {
      font-size: 13px;
      font-weight: bold;
      margin-top: 15px;
      background-color: #ffffff;
      color: #000000;
    }

    .close-btn {
      background-color: #dc3545;
      color: white;
      padding: 4px 8px;
      margin-top: 5px;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      font-size: 12px;
    }

