.map-region {
  cursor: pointer;
  transition: fill 0.3s;
}

.map-region:hover {
  fill: #ff9900; /* 滑鼠懸停顏色 */
}

.map-region.active {
  fill: #cc3300; /* 被點選後的顏色 */
}


/* === 右側區域統計面板 === */
.region-stats-panel {
  background: #ffffff;
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
               "PingFang TC", "Noto Sans TC", sans-serif;
}

/* Header */
.region-stats-panel .stats-header {
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 10px;
  margin-bottom: 14px;
}

.stats-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: #111827;
}

.stats-subtitle {
  margin-top: 4px;
  font-size: 13px;
  color: #6b7280;
}

/* Content */
.stats-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stats-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stats-label {
  font-size: 14px;
  color: #374151;
}

.stats-value {
  font-size: 24px;
  font-weight: 700;
  color: #2563eb;
}

.stats-unit {
  font-size: 14px;
  margin-left: 4px;
  color: #6b7280;
}

/* Footer */
.stats-footer {
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px dashed #e5e7eb;
  font-size: 12px;
  color: #9ca3af;
}

/* Loading 狀態（JS 可加 class） */
.region-stats-panel.is-loading {
  opacity: 0.6;
  pointer-events: none;
}