/* Общие стили */
body, html {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
}

/* Стили для контейнера карты */
#map {
  height: 100%
}

/* Стили для панели выбора данных */
#floating-panel {
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px; /* Фиксированная высота панели */
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

/* Стили для элементов внутри панели выбора данных */
#floating-panel input[type="text"],
#floating-panel select,
#floating-panel button {
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  margin-left: 5px;
  margin-right: 5px;
}

#floating-panel input[type="text"] {
  flex-grow: 1; /* Равномерно распределяет свободное пространство между полями ввода */
  margin-right: 10px;
}

#floating-panel select {
  width: 120px; 
  margin-right: 10px;
}

#clusters, #heatmapButton, #resetButton {
  background-color: #4caf50;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  padding: 8px 16px;
  transition: background-color 0.3s ease;
}

#clusters:hover, #heatmapButton:hover, #resetButton:hover {
  background-color: #2281df;
}

/* Стили для активной кнопки Heatmap */
#clusters.active, #heatmapButton.active  {
  background-color: #2281df;
  color: #ffffff;
}
