/* src/styles.css */
:root {
  color-scheme: light;
}
html,
body {
  height: 100%;
  margin: 0;
  font-family:
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
}
a {
  color: inherit;
}
.shell {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(0, 0, 0, .12);
  background: #fff;
}
.brand {
  font-weight: 700;
  letter-spacing: .2px;
}
.nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.nav button {
  padding: 6px 10px;
  border: 1px solid rgba(0, 0, 0, .12);
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
}
.nav button.active {
  border-color: rgba(0, 0, 0, .35);
  font-weight: 600;
}
.spacer {
  flex: 1;
}
.small {
  font-size: 12px;
  opacity: .75;
}
.frame-wrap {
  flex: 1;
  min-height: 0;
}
iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
