html, body {
  height: 100%;
  margin: 0;
}

#map {
  width: 100%;
  height: 60vh;
  min-height: 300px;
}

@media (max-width: 768px) {
  #map {
    height: 50vh;
  }
}

.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999;
  top: 0;
  left: 0px;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dropdown-menu {
  max-height: 50vh;
  overflow-y: auto;
}

/* Country Info Modal */
.info-icon {
  margin-right: 8px;
  color: #198754;
}

.country-cell {
  display: flex;
  align-items: center;
  gap: 10px;
}

.flag-img {
  width: 40px;
  height: auto;
  border-radius: 4px;
}

.table td {
  vertical-align: middle;
}

.justify-end {
  justify-content: flex-end;
}

#modalWeatherIcon {
  max-width: 100px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.my-extra-marker {
  transform: scale(1) !important;
  border-radius: 50% !important;
}

/* Weather Modal */
.card-footer {
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
} 

/* Gallery Modal */
#galleryModal .modal-header {
  position: sticky;
  top: 0;
  z-index: 1;
  margin-bottom: 8px;
}

.modal-body {
  scrollbar-gutter: stable;
}

/* City Clusters */
.marker-cluster-city div {
  background-color: rgba(20, 20, 200, 0.8);
  color: white;
}

/* Transport Clusters */
.marker-cluster-transport div {
  background-color: rgba(35, 135, 15, 0.8);
  color: white;
}

/* Landmarks Clusters*/ 
.marker-cluster-landmark div {
  background-color: rgba(200, 0, 0, 0.8);
  color: white;
}

/* Layer Toggle Icons */
.leaflet-control-layers label .layer-icon-city {
  color: rgba(20, 20, 200, 0.8);
}

.leaflet-control-layers label .layer-icon-transport {
  color: rgba(35, 135, 15, 0.8);
}

.leaflet-control-layers label .layer-icon-landmark {
  color: rgba(200, 0, 0, 0.8);
}


/* Layer control button */
.leaflet-control-layers-toggle {
  background-image: none !important;
  background-color: white;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
}

/* Layer control button icon */
.leaflet-control-layers-toggle::before {
  content: "\f5fd";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.leaflet-container .leaflet-control-layers-toggle {
  background-image: none !important;
}