html, body { height: 100%; margin: 0; }
/* Center the map using Bootstrap container */

.leaflet-graticule,
.leaflet-grid-pane,
.leaflet-grid-layer {
  display: none !important;
}
.map-wrap {
    height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #00375d;
    padding-left: 20px;
     padding-right: 20px;
     padding-top: 10px;

}
#map {
    width: 100%;
    height: 100%;
    border-radius: 10px;
   
}

.sidebar {
    height: 100vh;
    overflow: auto;
}

.poi-item small { opacity: .7; }
.bg-sidebar{
    background: #00375d;
}
.catalogue-item-shadow {
border-radius: 30px;
background: #00375d;
box-shadow:  5px 5px 16px #002640,
             -5px -5px 16px #00487a;
}


 /* Coordinate control (bottom-left) */
  .coords-control,.leaflet-bar {
    background: #747474;
    color: #fff;
    padding: 8px 8px;
    border-radius: 10px;
   box-shadow: 0 4px 10px rgba(0,0,0,.25);
    
   
  }
  .coords-control .rowline {
    display: flex;
    gap: 10px;
    align-items: baseline;
    flex-wrap: wrap;
  }
  .coords-control .label {
    opacity: .85;
    font-weight: 600;
    margin-right: 6px;
  }
  .coords-control .val {
    font-weight: 700;
  }
.leaflet-touch .leaflet-control-attribution, .leaflet-touch .leaflet-control-layers, .leaflet-touch .leaflet-bar{
    box-shadow: 0 4px 10px rgba(0,0,0,.25);
}

.leaflet-touch .leaflet-control-layers, .leaflet-touch .leaflet-bar{
    border: 1px solid rgba(0,0,0,0.1);
}

.leaflet-bar{
    background-color:#747474 !important;
}
.leaflet-bar a{
    background-color:#747474 !important;
    
}
.leaflet-control-layers{
    background-color:#747474 !important;
    border-radius: 10px!important;
  
}
.leaflet-ruler{
    width: 47px !important;
    height: 47px !important;
}

  .logo-control {
    background: #00375d ;
    padding: 6px 10px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,.25);
  }

  .logo-control img {
    height:70px;
    width: auto;
    display: block;
  }


.poi-fa-marker{
  width:30px;
  height:30px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 6px 14px rgba(0,0,0,.25);
  border:2px solid rgba(255,255,255,.9);
  color:#fff;
}

  .poi-fa-marker i{
    font-size: 14px;
    line-height: 1;
  }


  /* Colored cluster bubbles */
.marker-cluster-custom {
  border-radius: 50%;
  background-clip: padding-box;
  box-shadow: 0 6px 14px rgba(0,0,0,.25);
}

.marker-cluster-custom div {
  width: 40px;
  height: 40px;
  margin-left: 0px;
  margin-top: 0px;
  text-align: center;
  border-radius: 50%;
  font: bold 14px system-ui, Arial, sans-serif;
  color: #fff;
  display:flex;
  align-items:center;
  justify-content:center;
  border: 2px solid rgba(255,255,255,.9);
}

#tableDiv{
    height: 20vh;
}

#dataTabsContent {
  height: 15vh;
  overflow: auto;
  border-radius: 10px;
}

.button-table{
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1001;
    width: 100px;
    cursor: pointer;
    background-color:#007fff;
    border-radius: 10px 10px 0px 0px;
}

.nav-link{
    padding-top: 3px;
    padding-bottom: 3px;
}


/* --- Mobile layout: map 50vh + sidebar 50vh --- */
@media (max-width: 991.98px) { /* Bootstrap lg breakpoint */
  .map-wrap{
    height: 50vh !important;
    padding: 10px;
  }

  #map{
    height: 100% !important;
  }

  .sidebar{
    height: 50vh !important;
    overflow: auto;
  }
   .logo-control img {
    height:50px;
    width: auto;
    display: block;
  }
   #dataTabsContent { max-height: 22vh; }
}


.info {
      padding: 6px 8px;
      font: 13px/16px "Poppins-Regular", sans-serif;
      background: #03405F;
      /* background: rgba(255,255,255,0.8); */
      box-shadow: 0 0 15px rgba(0,0,0,0.2);
      border-radius: 5px;
      /* font-weight: 700; */
      color:#FFF;
  }

.legend i {
    width: 15px;
    height: 15px;
    float: left;
    margin-right: 8px;
    /* opacity: 0.7; */
}