
html, body {
      margin: 0;
      padding: 0;
      height: 100%;
      font-family: 'Arial Narrow', Arial, sans-serif;
      overflow: hidden;
      background-color: #b3b3b3;
      color: #333;
    }

 #map {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
}

/* DÉCALAGE DES CONTRÔLES LEAFLET */
.leaflet-top {
  top: 70px !important;
}

.leaflet-bottom {
  bottom: 35px !important;
}

  footer {
      position: absolute;
      bottom: 0;
      width: 100%;
      text-align: center;
      font-size: 13px;
      color: #fff;
      z-index: 2;
      background: rgba(34,34,34,0.85);
      padding: 8px 0;
      border-top: 1px solid #222;
    }


/* Navbar général */
.navbar {
  min-height: 70px;
  background-color: rgba(34,34,34,0.85);
  border-bottom: 1px solid #222;
  display: flex;
  padding: 0 10px; /* moins de padding à gauche/droite */
}

/* Container interne de la navbar */
.navbar-inner {
  display: flex;
  align-items: center;
  width: 100%;
  padding-left: 0;  
  padding-right: 0;
}

/* Bloc logo + titre  */
.navbar-header {
  display: flex;
  align-items: center;
  margin-left: 5px;     
}

/* Logo */
.navbar-logo {
  height: 50px;
  margin-right: 10px;
}

/* Titre en gras et plus gros */
.navbar-brand {
  font-size: 20px;
  font-weight: bold;
  color: #fff !important;
  margin: 0; /* supprime marges par défaut */
  /* alignement vertical via flex, donc pas besoin line-height */
}
.navbar-nav > li > a {
  font-size: 19px;   /* +1px */
  color: #fff !important;
  height: 70px;
  line-height: 70px;
  padding: 0 24px;
}
    
.navbar-collapse {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
    .navbar-nav > li > a i {
  margin-right: 6px; /* espace entre l’icône et le texte */
}
    /* Dropdown */
.dropdown-menu {
  background-color: rgba(51, 51, 51, 0.95);
  border: 1px solid #222;
}

.dropdown-menu > li > a {
  color: #fff;
  padding: 10px 20px;
}

.dropdown-menu > li > a:hover {
  background-color: #444;
  color: #fff;
}

/* caret clair */
.navbar-nav > .dropdown > a .caret {
  border-top-color: #fff;
  border-bottom-color: #fff;
}
