* {
  --unfilled: #dcd8d4;
  --filled: #edebe9;
  --selected: #b8c8ff;
  --dark-selected: #5a75d1;
  --associated: #dce4f6;
}
body {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  margin: 1.5rem;
  line-height: 2;
  font-size: 20px;
}
h2 {
  margin-top: 0;
  margin-bottom: 0;
}
.date {
  margin-left: 1rem;
}
.date a.arrow {
  margin: 0 0.5rem;
  color: var(--dark-selected);
  font-weight: 600;
  cursor: pointer;
}
.date a.arrow:hover {
  color: black;
}
.date a.arrow.disabled {
  cursor: default;
  color: var(--selected);
}
.date a.fancy {
  cursor: pointer;
}
.controls {
  margin-left: 0.75rem;
}
.controls label {
  margin-left: 0.2rem;
  position: relative;
  bottom: 0.05rem;
}
div.node {
  margin-bottom: 1.4rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: baseline;
  white-space: pre-wrap;
}
div.node:first-child {
  margin-top: 2.2rem;
}
div.node span {
  border-bottom: 2px solid transparent;
}
div.node span.editable {
  min-width: 1.75rem;
  min-height: 1.75rem;
  line-height: 1.75rem;
  margin: 0 1px;
  display: inline-flex;
  background: var(--unfilled);
  padding: 2px;
  border-bottom: 2px solid black;
  transition: background-color 0.3s ease;
}
div.node span.editable br {
  display: none;
}
div.node span.editable:not(:empty) {
  background: var(--filled);
}
div.node span.editable:hover,
div.node span.editable:focus {
  background: var(--selected);
}
div.node span.editable.highlight {
  background: var(--associated);
}
div.node span.editable:empty::before {
  content: '\200B';
}
span.ident {
  font-size: 14px;
  color: #555;
  padding-right: 10px;
}
.controls:has(#show-brackets:not(:checked)) ~ div span.ident {
  display: none;
}
@media screen and (max-width: 900px) {
  html {
    padding: 1rem 0 0 1rem;
  }
  body {
    font-size: 16px;
    margin: 0;
  }
  span.ident {
    font-size: 12px;
  }
  div.node {
    margin-bottom: 0.5rem;
  }
}
@media screen and (max-width: 770px) {
  span.ident {
    font-size: 10px;
  }
}
#graph {
  height: 400px;
  width: 100%;
  max-width: 600px;
}
/*# sourceMappingURL=city.css.map */