* {
  /*box-sizing: border-box;*/
}

#map-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  overflow: visible;
}

#world-map {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
}

#controls {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#controls button {
  width: 36px;
  height: 36px;
  border: none;
  background: #9b5de5;
  color: white;
  font-size: 18px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: all 0.2s ease;
}

#controls button:hover {
  background: #7b2cbf;
}

.city-tooltip {
  position: absolute;
  display: none;
  z-index: 2000;
  pointer-events: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bs-secondary-color);
  padding: 8px 16px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  width: max-content;
  min-width: 100px;
  max-width: 300px;
}

.city-name-label {
  font-family: 'Nunito';
  font-weight: 800;
  color: #dfe7f1;
  font-size: 16px;
  text-transform: uppercase;
  white-space: nowrap;
  display: block;
  line-height: 1.2;
}

.state-name-label {
  font-family: 'Nunito';
  color: var(--bs-warning-border-subtle);
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
  display: block;
  margin-top: 2px;
}

