:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f6f8fb;
  color: #172033;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

.operator-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 58px;
  padding: 0.7rem 1.1rem;
  color: #fff;
  background: #102c58;
  border-bottom: 3px solid #29a3a3;
}

.identity,
.operator-bar nav,
.evidence {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.environment {
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  color: #102c58;
  background: #f4c95d;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.title {
  font-size: 1rem;
  font-weight: 750;
}

.version {
  color: #c8d8ef;
  font-size: 0.78rem;
}

.operator-bar a {
  color: #fff;
  font-size: 0.8rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.operator-bar a:hover,
.operator-bar a:focus-visible {
  border-bottom-color: #fff;
}

.evidence {
  min-height: 42px;
  padding: 0.55rem 1.1rem;
  background: #e9f1f8;
  border-bottom: 1px solid #ccd8e8;
  color: #42516b;
  font-size: 0.8rem;
}

.evidence strong {
  color: #102c58;
}

.snapshot {
  margin-left: auto;
}

.renderer-note {
  padding: 0.65rem 1.1rem;
  color: #24324a;
  background: #fff9e8;
  border-bottom: 1px solid #ead9a4;
  font-size: 0.8rem;
}

#status {
  margin: 2rem auto;
  width: min(760px, calc(100% - 2rem));
  padding: 1rem;
  border: 1px solid #ccd8e8;
  border-radius: 6px;
  background: #fff;
  color: #42516b;
  text-align: center;
}

#status.error {
  border-color: #b42318;
  color: #8a1c13;
  background: #fff2f0;
}

@media (max-width: 880px) {
  .operator-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .snapshot {
    width: 100%;
    margin-left: 0;
  }
}
