.on-repd-map-app {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 18px;
  align-items: start;
}

.on-repd-sidebar {
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 14px;
}

.on-repd-sidebar-inner {
  padding: 16px;
  max-height: 760px;
  overflow: auto;
}

.on-repd-title {
  margin: 0 0 8px;
  font-size: 22px;
}

.on-repd-intro {
  margin: 0 0 14px;
  color: #4b5563;
}

.on-repd-counts {
  margin: 0 0 14px;
  padding: 10px 12px;
  background: #f5f7fa;
  border-radius: 10px;
  font-weight: 600;
}

.on-repd-control,
.on-repd-control-group {
  margin-bottom: 16px;
}

.on-repd-control label,
.on-repd-group-title {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
}

.on-repd-control input,
.on-repd-control select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #cfd6dd;
  border-radius: 10px;
  background: #fff;
  box-sizing: border-box;
}

.on-repd-checkbox-list {
  display: grid;
  gap: 8px;
}

.on-repd-checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.on-repd-actions button {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #cfd6dd;
  border-radius: 10px;
  background: #f5f7fa;
  cursor: pointer;
}

.on-repd-legend {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid #e5e7eb;
}

.on-repd-legend-title {
  font-weight: 700;
  margin-bottom: 10px;
}

.on-repd-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.on-repd-legend-swatch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,.2);
}

.on-repd-map-column {
  min-width: 0;
}

.on-repd-map-canvas {
  width: 100%;
  border: 1px solid #d8d8d8;
  border-radius: 14px;
  overflow: hidden;
}

.on-repd-popup-row {
  margin-top: 6px;
}

.on-repd-map-empty {
  padding: 16px;
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 12px;
}

@media (max-width: 980px) {
  .on-repd-map-app {
    grid-template-columns: 1fr;
  }

  .on-repd-sidebar-inner {
    max-height: none;
  }
}
