html, body, #map {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

/* Custom Attribution Styles */
#custom-attribution {
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 4px;
  padding: 2px 8px;
  font: 12px/20px Arial, Helvetica, sans-serif;
  color: #333;
}

#custom-attribution a {
  text-decoration: underline;
  color: #333;
}

#attribution-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-size: 16px;
  line-height: 20px;
  color: #333;
}

/* Style Picker Control */
#style-picker {
  position: relative;
  background: white;
  border-radius: 4px;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.style-picker-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  color: #333;
  transition: background-color 0.2s;
  width: 36px;
  height: 36px;
}

.style-picker-button:hover {
  background-color: #f5f5f5;
}

.style-picker-icon {
  font-size: 18px;
  line-height: 1;
  display: block;
}

.style-picker-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: white;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  min-width: 100px;
  width: auto;
  overflow: hidden;
  z-index: 1000;
}

.style-picker-menu > .style-option {
  width: 100%;
}

.style-picker-menu.visible {
  display: block;
}

.style-option {
  display: block !important;
  width: 100% !important;
  padding: 10px 16px;
  text-align: left;
  background: white;
  border: none;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  font-size: 14px;
  color: #333;
  transition: background-color 0.2s;
  box-sizing: border-box !important;
  margin: 0 !important;
  min-width: 100% !important;
}

.style-option:last-child {
  border-bottom: none;
}

.style-option:hover {
  background-color: #f5f5f5;
}

.style-option.active {
  background-color: #e3f2fd !important;
  color: #1976d2;
  font-weight: 500;
}

.style-option.active:hover {
  background-color: #bbdefb;
}

/* Cluster marker styles - now using inline styles instead */ 