.leaflet-marker-icon.leaflet-div-icon.leaflet-zoom-animated.leaflet-interactive {
  background-color: transparent;
  border: none;
  text-align: center;
}

.leaflet-bar.leaflet-control.leaflet-control-slider {
  width: 15rem;
  height: 4rem;
  text-align: center;
  background-color: white;
}

.leaflet-bar.leaflet-control.leaflet-control-slider > input[type="range"] {
  height: 2rem;
  width: 90%;
  margin: 0;
  -webkit-appearance: none;
  -moz-appearance: none;    /* Firefox */

}

input[type="range"]::-webkit-slider-runnable-track {
  height: 0.5rem;
  backdrop-filter: contrast(0.8);
  -webkit-backdrop-filter: contrast(0.8); /* Fallback for Safari */
  border: none;
  border-radius: 1rem;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: rgb(255, 77, 77);
  margin-top: -4px;
}

/* Firefox */
input[type="range"]::-moz-range-track {
  height: 0.5rem;
  background-color: #ddd;
  border-radius: 1rem;
}

input[type="range"]::-moz-range-thumb {
  height: 16px;
  width: 16px;
  background: rgb(255, 77, 77);
  border-radius: 50%;
  border: none;
}

.time-label {
  margin: 0; 
  
}

#map:focus {
  outline: none;
}