/* ========================================
   TOP PANEL
   ======================================== */

.top-panel {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(30, 30, 30, 0.95);
  padding: 16px 12px 12px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  box-sizing: border-box;
}

.info-text {
  font-size: 11px;
  color: #e0e0e0;
  text-align: left;
  margin-top: 4px;
}

.info-text #earthquakeCount {
  font-weight: 700;
  color: #4da3ff;
}

.info-text #regionName {
  font-weight: 600;
  color: #e0e0e0;
}

.info-text #timeframeText {
  font-weight: 700;
  color: #4da3ff;
}

.info-text .source {
  font-size: 9px;
  font-weight: 400;
  opacity: 0.7;
}

.controls-wrapper {
  display: flex;
  gap: 8px;
  align-items: center;
}

.button-group {
  display: flex;
  gap: 8px;
  align-items: center;
}

.top-panel button {
  border: none;
  background: #404040;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s;
  flex: 0 0 auto;
  color: #e0e0e0;
  font-size: 13px;
}

.top-panel button.active {
  background: #0d6efd;
  color: white;
}
