/* Seven Segment font disabled due to corrupted file
@font-face {
  font-family: 'Seven Segment';
  src: url('/fonts/seven-segment.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
*/

html, body {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
}

.root {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Positionner les contrôles de navigation (zoom +/-) au milieu à droite */
.maplibregl-ctrl-top-right {
  top: 50% !important;
  transform: translateY(-50%);
  right: 10px;
}

/* Version mobile : s'assurer que les contrôles restent à droite */
@media (max-width: 960px) {
  .maplibregl-ctrl-top-right {
    top: 50% !important;
    transform: translateY(-50%);
    right: 8px !important;
    left: auto !important;
  }
}

.maplibregl-ctrl-top-right .maplibregl-ctrl-group {
  margin: 0;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
  border-radius: 8px;
}

/* Style des boutons de contrôle */
.maplibregl-ctrl button {
  border-radius: 4px;
}

.maplibregl-ctrl button:hover {
  background-color: rgba(255, 107, 53, 0.1);
}

