.Viewer {
  position: fixed;
  inset: 0;
  overflow: hidden;
  background: #16181c;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
  -webkit-font-smoothing: antialiased;
}
.Viewer * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.Viewer-Canvas {
  display: block;
  width: 100%;
  height: 100%;
}
.Viewer-Error {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #9aa0a8;
  font-size: 13px;
  text-align: center;
}
.Viewer-Panel {
  position: absolute;
  min-width: 180px;
  background: #26292e;
  border: 1px solid #3a3f47;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  z-index: 10;
}
.Viewer-Panel[data-hidden] {
  display: none;
}
.Viewer-Panel-Header {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #2e3239;
  border-bottom: 1px solid #3a3f47;
  cursor: grab;
  user-select: none;
}
.Viewer-Panel-Header:active {
  cursor: grabbing;
}
.Viewer-Panel-Title {
  padding: 0 12px;
  font-size: 12px;
  font-weight: 600;
  color: #e6e8ea;
}
.Viewer-Panel-Close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9aa0a8;
  cursor: pointer;
}
.Viewer-Panel-Close svg {
  width: 10px;
  visibility: hidden;
}
.Viewer-Panel-Close:hover svg {
  visibility: visible;
}
.Viewer-Panel-Body {
  padding: 10px 12px;
}
.Viewer-Panel-Row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
.Viewer-Panel-Row + .Viewer-Panel-Row {
  margin-top: 6px;
}
.Viewer-Panel-Label {
  font-size: 11px;
  color: #9aa0a8;
}
.Viewer-Panel-Population, .Viewer-Panel-Share {
  font-size: 13px;
  color: #e6e8ea;
  font-variant-numeric: tabular-nums;
}