/* Supprimer la barre de scroll */
::-webkit-scrollbar {
  display: none;
}

html {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
}

body {
  overflow-x: hidden;
}

/* Zone de déplacement transparente en haut */
.drag-area {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 30px;
  z-index: 9999;
  -webkit-app-region: drag;
  pointer-events: none;
  background: transparent;
}

/* Permettre les interactions avec les éléments à l'intérieur de la zone de drag */
.drag-area * {
  -webkit-app-region: no-drag;
  pointer-events: auto;
}

/* S'assurer que les liens et boutons fonctionnent */
a, button, .js-menu-link, .js-contrast, .js-qr-code {
  -webkit-app-region: no-drag !important;
  pointer-events: auto !important;
} 
// Updated: 2025-07-29T19:00:12.812Z

// Updated: 2025-07-29T19:00:17.715Z

// Updated: 2025-07-29T19:00:25.004Z

// Updated: 2025-07-29T19:00:25.562Z

// Updated: 2025-07-29T19:00:27.229Z
