html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

#map {
  height: 800px;
  width: 100%;
}

#chart {
  height: 500px;
  width: 100%;
}

#loading {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
}

#data-table {
  width: 100%;
  margin-top: 20px;
}

.suggestions {
  border: 1px solid #ccc;
  max-height: 150px;
  overflow-y: auto;
  position: absolute;
  background: white;
  display: none;
  z-index: 1000; /* Ensure suggestions are above other elements */
}

.suggestion-item {
  padding: 10px;
  cursor: pointer;
}

.suggestion-item:hover {
  background: #eee;
}
