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

#map {
  width: 100%;
  height: 100%;
  background: #2a2a2a;
}

.filter-control {
  background: #fff;
  padding: 10px;
  border-radius: 5px;
  font-family: Arial, sans-serif;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  max-width: 400px;
}

.filter-title {
  font-weight: bold;
  margin-bottom: 6px;
}

.filter-block {
  margin-bottom: 6px;
}

.filter-label {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
}

.filter-label.strong {
  margin-bottom: 6px;
}

.checkbox-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.checkbox-label {
  font-weight: 600;
  font-size: 13px;
}

.filter-select,
.search-input {
  width: 100%;
  padding: 4px;
  border: 1px solid #ccc;
  border-radius: 3px;
  margin-top: 4px;
  box-sizing: border-box;
}

.filter-section {
  border-top: 1px solid #eee;
  padding-top: 6px;
  margin-top: 6px;
}

.type-box {
  display: none;
  margin-top: 6px;
  max-height: 120px;
  overflow: auto;
  border: 1px solid #f0f0f0;
  padding: 6px;
}

.pokemon-list {
  max-height: 400px;
  overflow: auto;
  border: 1px solid #f6f6f6;
  padding: 6px;
  background: #fff;
  box-sizing: border-box;
}

.hidden {
  display: none !important;
}
