@charset "UTF-8";
:root {
  --bg: #f7f8fa;
  --surface: #fff;
  --ink: #18212f;
  --muted: #75808e;
  --line: #e7ebef;
  --accent: #187c63;
  --soft: #e9f5f0;
  --nav: #152624;
  --danger: #b34545;
  --shadow: 0 16px 50px #0c25251a;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.5;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--bg);
}
[hidden] {
  display: none !important;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  outline-offset: 4px;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: wait;
  opacity: 0.6;
}
a {
  color: inherit;
  text-decoration: none;
}
svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: middle;
  flex-shrink: 0;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  font-size: 30px;
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 10px;
  font-weight: 650;
}
h2 {
  font-size: 22px;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
h3 {
  font-size: 14px;
  font-weight: 650;
  margin-bottom: 16px;
}
small {
  font-size: 11px;
}
.muted,
.help {
  color: var(--muted);
}
.help {
  font-size: 12px;
  line-height: 1.6;
  font-weight: 400;
  margin: 6px 0 0;
}
.eyebrow {
  font-size: 10px;
  letter-spacing: 1.7px;
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}
.app-shell {
  display: flex;
  min-height: 100vh;
}
.sidebar {
  background: var(--nav);
  width: 240px;
  color: #d1deda;
  position: fixed;
  inset: 0 auto 0 0;
  padding: 32px 20px 0;
  display: flex;
  flex-direction: column;
}
.wordmark {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 650;
  letter-spacing: -0.6px;
}
.wordmark small {
  display: block;
  letter-spacing: 0.3px;
  font-weight: 400;
  color: #8fa6a0;
  font-size: 10px;
  margin-top: 2px;
}
.logo {
  font-size: 34px;
  color: #77d3af;
  line-height: 1;
}
.nav-label {
  font-size: 9px;
  letter-spacing: 1.6px;
  color: #8ca29a;
  margin: 48px 14px 13px;
}
.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 14px;
  border: 0;
  color: #aabbb6;
  background: transparent;
  border-radius: 7px;
  text-align: left;
  margin-bottom: 5px;
  font-size: 13px;
}
.nav-item.active {
  background: #2a403b;
  color: #c4f0dd;
}
.nav-item:hover {
  background: #243a35;
}
.nav-count {
  margin-left: auto;
  font-size: 10px;
  background: #496056;
  color: #d3eee0;
  padding: 1px 6px;
  border-radius: 4px;
}
.sidebar-note {
  margin: auto 9px 24px;
  padding: 18px 0 5px;
  border-top: 1px solid #ffffff15;
}
.sidebar-note svg {
  color: #79bba3;
  display: block;
  margin-bottom: 10px;
}
.sidebar-note strong {
  font-size: 11px;
  font-weight: 500;
}
.sidebar-note p {
  font-size: 11px;
  line-height: 1.7;
  color: #90a59d;
  margin: 6px 0;
}
.sidebar-bottom {
  display: flex;
  align-items: center;
  gap: 9px;
  border-top: 1px solid #ffffff15;
  padding: 20px 0;
  font-size: 10px;
}
.sidebar-bottom small {
  display: block;
  font-size: 9px;
  color: #8fa89d;
}
.sidebar-bottom .icon-button {
  margin-left: auto;
  color: #94ada2;
}
.avatar {
  background: #365048;
  color: #c1e3d5;
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}
.main {
  margin-left: 240px;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.topbar {
  height: 73px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 42px;
  border-bottom: 1px solid var(--line);
  background: #ffffffa6;
}
.breadcrumb {
  font-size: 11px;
  color: var(--muted);
}
.breadcrumb span {
  margin: 0 12px;
  color: #b8c0c7;
}
.breadcrumb strong {
  font-weight: 500;
  color: var(--ink);
}
.topbar-right {
  display: flex;
  gap: 22px;
  align-items: center;
}
.local-badge {
  font-size: 10px;
  color: #65786d;
  display: flex;
  align-items: center;
  gap: 7px;
}
.status-dot {
  width: 6px;
  height: 6px;
  background: #54b58f;
  border-radius: 50%;
  display: inline-block;
}
.icon-button {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}
.icon-button:hover {
  background: #7f9f9220;
  color: var(--accent);
}
.content {
  padding: 40px 42px;
  max-width: 1600px;
  width: 100%;
  margin: auto;
  flex: 1;
}
.page-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}
.page-heading p {
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 0;
}
.page-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.primary,
.secondary,
.ghost,
.danger {
  border-radius: 6px;
  padding: 10px 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  min-height: 37px;
}
.primary {
  background: var(--accent);
  border: 1px solid var(--accent);
  color: white;
}
.primary:hover {
  background: #12644f;
}
.secondary {
  background: var(--surface);
  border: 1px solid #dce3e7;
  color: #44515c;
}
.secondary:hover {
  border-color: #aab9b2;
}
.ghost {
  background: transparent;
  border: 1px solid transparent;
  color: var(--muted);
}
.danger {
  background: #b44646;
  color: #fff;
  border: 1px solid #b44646;
}
.wide {
  width: 100%;
  justify-content: space-between;
}
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
  margin-bottom: 28px;
}
.metric {
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  padding: 19px 21px;
  position: relative;
}
.metric-label {
  font-size: 11px;
  color: #74808b;
}
.metric-value {
  font-size: 29px;
  letter-spacing: -1px;
  font-weight: 600;
  margin: 9px 0 3px;
}
.metric-foot {
  font-size: 10px;
  color: #8b96a1;
}
.metric-icon {
  position: absolute;
  right: 18px;
  top: 18px;
  background: #f3f6f5;
  color: #70877c;
  border-radius: 7px;
  padding: 7px;
  display: flex;
}
.metric.good .metric-value {
  color: var(--accent);
}
.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
  overflow: hidden;
}
.panel-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding: 19px 23px;
  border-bottom: 1px solid var(--line);
}
.panel-heading h3 {
  margin: 0;
  font-size: 13px;
}
.panel-heading p {
  margin: 0;
  font-size: 11px;
  color: var(--muted);
}
.toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 17px 22px;
  border-bottom: 1px solid var(--line);
}
.search {
  position: relative;
  flex: 1;
  max-width: 330px;
}
.search svg {
  position: absolute;
  left: 11px;
  top: 10px;
  color: #929fa8;
  width: 16px;
}
.search input {
  padding-left: 34px !important;
}
.toolbar input,
.toolbar select {
  font-size: 11px;
  min-height: 35px;
  padding: 7px 10px;
}
.toolbar select {
  width: auto;
  min-width: 115px;
}
.table-wrap {
  overflow: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
  white-space: nowrap;
}
th {
  text-align: left;
  font-size: 9px;
  letter-spacing: 0.7px;
  font-weight: 600;
  color: #84909b;
  background: #fcfcfd;
  padding: 12px 22px;
  border-bottom: 1px solid var(--line);
}
td {
  padding: 18px 22px;
  border-bottom: 1px solid #f0f2f4;
  font-size: 11px;
}
tbody tr:last-child td {
  border-bottom: 0;
}
tbody tr:hover {
  background: #fbfdfc;
}
.watch-cell {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
}
.site-icon {
  width: 33px;
  height: 36px;
  border: 1px solid #e6ece9;
  border-radius: 7px;
  display: grid;
  place-items: center;
  background: #f5f8f6;
  color: #4c8270;
  font-size: 14px;
  font-weight: 500;
  flex-shrink: 0;
}
.watch-title {
  border: 0;
  background: transparent;
  text-align: left;
  padding: 0;
  color: var(--ink);
  font-weight: 600;
  font-size: 12px;
  max-width: 300px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
.watch-url {
  display: block;
  color: #97a0a9;
  font-size: 10px;
  max-width: 290px;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-top: 4px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 4px;
  padding: 3px 7px;
  font-size: 9px;
  font-weight: 500;
  background: #eff3f1;
  color: #6b7e75;
}
.badge.green {
  background: #e9f6ef;
  color: #358366;
}
.badge.blue {
  background: #edf3fc;
  color: #5479b2;
}
.badge.red {
  background: #fbebeb;
  color: #b66161;
}
.badge.amber {
  background: #fff4e3;
  color: #a88140;
}
.group-tag {
  display: inline-flex;
  font-size: 9px;
  color: #7d8691;
  border: 1px solid #e9ecef;
  padding: 1px 6px;
  border-radius: 4px;
  margin-top: 6px;
}
.row-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1px;
}
.row-actions svg {
  width: 15px;
  height: 15px;
}
.table-footer {
  display: flex;
  justify-content: space-between;
  padding: 13px 22px;
  color: #949da6;
  font-size: 10px;
  border-top: 1px solid var(--line);
}
.empty {
  text-align: center;
  padding: 65px 25px 60px;
  max-width: 550px;
  margin: auto;
}
.empty-symbol {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  background: #eef6f1;
  border: 1px solid #d9e9df;
  border-radius: 18px;
  color: #479377;
}
.empty-symbol svg {
  width: 29px;
  height: 29px;
}
.empty h2 {
  font-size: 19px;
  margin-bottom: 10px;
}
.empty p {
  font-size: 12px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 22px;
}
.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 26px;
}
.feature-item {
  display: flex;
  gap: 12px;
  padding: 6px;
}
.feature-item svg {
  color: #8fa69a;
  width: 17px;
}
.feature-item strong {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: #627068;
}
.feature-item p {
  font-size: 10px;
  line-height: 1.7;
  color: #939ca4;
  margin: 4px 0 0;
}
.main-footer {
  padding: 18px 42px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: #909ba5;
  font-size: 9px;
  letter-spacing: 0.2px;
}
.pause-banner,
.offline {
  padding: 12px 20px;
  border: 1px solid #e5d5b5;
  background: #fff9ed;
  color: #997b46;
  font-size: 12px;
  margin-bottom: 20px;
  border-radius: 6px;
}
.offline {
  margin: 15px 42px 0;
}
.dialog {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0;
  width: 620px;
  max-width: calc(100vw - 30px);
  max-height: 92vh;
  box-shadow: var(--shadow);
  color: var(--ink);
}
.dialog::backdrop {
  background: #10232165;
  backdrop-filter: blur(3px);
}
.editor-dialog {
  width: 760px;
}
.detail-dialog {
  width: 920px;
}
.dialog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
}
.dialog-header h2 {
  font-size: 21px;
  margin: 0;
}
.dialog-header .eyebrow {
  font-size: 9px;
  margin-bottom: 6px;
}
.dialog-body {
  padding: 25px 28px;
  max-height: calc(92vh - 160px);
  overflow: auto;
}
.dialog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 17px 28px;
  background: #fafbfb;
  border-top: 1px solid var(--line);
  gap: 12px;
}
.dialog-footer > div {
  display: flex;
  gap: 8px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.span-2 {
  grid-column: span 2;
}
label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #525f68;
  margin-bottom: 14px;
}
.form-grid label {
  margin: 0;
}
input,
select,
textarea {
  border: 1px solid #dfe5e9;
  border-radius: 5px;
  padding: 10px 11px;
  min-height: 39px;
  background: #fff;
  color: #293842;
  width: 100%;
  font-size: 12px;
  transition: border-color 0.15s;
}
input:focus,
select:focus,
textarea:focus {
  border-color: #5c9e88;
  outline: 2px solid #5c9e8818;
}
input::placeholder,
textarea::placeholder {
  color: #a0aab1;
}
textarea {
  resize: vertical;
  line-height: 1.6;
}
input[type="file"] {
  font-size: 11px;
  padding: 9px;
}
input[type="checkbox"] {
  accent-color: var(--accent);
  width: 14px;
  height: 14px;
  min-height: 14px;
  flex-shrink: 0;
}
.check-label {
  flex-direction: row;
  align-items: center;
  font-weight: 400;
  gap: 8px;
}
.form-section {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
details {
  margin-top: 22px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
summary {
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #536a5f;
}
.form-options {
  display: flex;
  gap: 24px;
  margin: 23px 0 0;
  flex-wrap: wrap;
}
.error-text {
  font-size: 12px;
  color: var(--danger);
  margin-top: 10px;
  white-space: pre-wrap;
}
.error-text:empty {
  display: none;
}
.preview-box {
  padding: 18px;
  background: #f4f8f5;
  border: 1px solid #dce9df;
  border-radius: 7px;
  margin-top: 18px;
}
.preview-box pre,
.content-value {
  font:
    12px/1.7 Consolas,
    monospace;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  max-height: 260px;
  overflow: auto;
  margin: 10px 0 0;
}
.preview-box img {
  width: 100%;
  border: 1px solid var(--line);
  margin-top: 15px;
  cursor: crosshair;
  border-radius: 5px;
}
.preview-box h3 {
  margin: 0;
}
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  background: #203d32;
  color: white;
  padding: 13px 22px;
  border-radius: 7px;
  box-shadow: var(--shadow);
  z-index: 10;
  font-size: 12px;
  max-width: 85vw;
}
.activity-item {
  padding: 20px 23px;
  display: flex;
  gap: 15px;
  border-bottom: 1px solid var(--line);
}
.activity-item:last-child {
  border-bottom: 0;
}
.activity-mark {
  margin-top: 4px;
  width: 28px;
  height: 28px;
  background: var(--soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.activity-mark.error {
  background: #fbebeb;
  color: #bb6868;
}
.activity-copy {
  min-width: 0;
  flex: 1;
}
.activity-copy h3 {
  margin: 0 0 5px;
  font-size: 12px;
}
.activity-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}
.activity-time {
  font-size: 10px;
  color: #9ba3aa;
}
.unread-dot {
  background: #53a988;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  display: inline-block;
  margin-right: 7px;
}
.activity-snippet {
  margin-top: 12px;
  padding: 10px 13px;
  background: #f6f8f7;
  border-radius: 5px;
  color: #69776e;
  font-size: 11px;
  max-height: 72px;
  overflow: hidden;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.detail-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.detail-meta a {
  font-size: 12px;
  color: var(--accent);
  overflow-wrap: anywhere;
  word-break: break-all;
}
.detail-actions {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}
.detail-section {
  margin-top: 25px;
}
.detail-section h3 {
  margin-bottom: 12px;
}
.diff {
  margin: 12px 0;
  border: 1px solid var(--line);
  border-radius: 5px;
  max-height: 350px;
  overflow: auto;
  background: #fafbfc;
}
.diff pre {
  margin: 0;
  padding: 4px 12px;
  font:
    11px/1.7 Consolas,
    monospace;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.diff .added {
  background: #e7f5ec;
  color: #286940;
}
.diff .removed {
  background: #fae9e8;
  color: #a24d4d;
  text-decoration: line-through;
}
.check-history {
  border: 1px solid var(--line);
  border-radius: 6px;
}
.check-row {
  display: grid;
  grid-template-columns: 160px 100px 1fr;
  gap: 12px;
  padding: 11px 14px;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
}
.check-row:last-child {
  border-bottom: 0;
}
.check-row span:last-child {
  color: var(--muted);
  overflow-wrap: anywhere;
}
.settings-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 22px;
}
.settings-body {
  padding: 24px;
}
.settings-body h3 {
  margin-top: 24px;
}
.settings-body h3:first-child {
  margin-top: 0;
}
.settings-body p {
  font-size: 12px;
  line-height: 1.8;
  color: var(--muted);
}
.settings-body button {
  margin-right: 7px;
  margin-bottom: 7px;
}
.session-card {
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--line);
}
.session-card:last-child {
  border-bottom: 0;
}
.session-card h3 {
  margin: 0;
  font-size: 13px;
}
.session-card p {
  font-size: 11px;
  color: var(--muted);
  margin: 4px 0;
}
.session-card .icon-button {
  margin-left: auto;
}
.small-dialog {
  width: 420px;
}
code {
  font:
    11px Consolas,
    monospace;
  background: #eaf0ed;
  border-radius: 3px;
  padding: 2px 4px;
}
.load-more {
  display: block;
  margin: 18px auto;
}
.login-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.login-story {
  background: var(--nav);
  color: #e1ece5;
  padding: 55px 65px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}
.login-story h1 {
  font-size: 48px;
  line-height: 1.15;
  letter-spacing: -2px;
  font-weight: 500;
}
.login-story p {
  font-size: 14px;
  color: #a5bbb0;
  max-width: 370px;
  line-height: 1.9;
  margin: 24px 0;
}
.login-story .eyebrow {
  color: #8dc9aa;
}
.story-line {
  font-size: 11px;
  color: #a3bdae;
  display: flex;
  gap: 10px;
  align-items: center;
}
.login-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.login-panel form {
  width: 340px;
}
.login-panel h2 {
  font-size: 28px;
  margin-bottom: 8px;
}
.login-panel .muted {
  font-size: 13px;
  margin-bottom: 30px;
}
.login-panel .wide {
  margin-top: 12px;
}
.login-panel .help {
  margin-top: 25px;
  font-size: 11px;
  line-height: 1.8;
}
.login-panel label {
  margin-top: 20px;
}
.change-actions {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.change-actions .secondary {
  font-size: 10px;
  padding: 5px 9px;
  min-height: 28px;
}
.change-url {
  overflow-wrap: anywhere;
  max-width: 380px;
}
.email-panel {
  margin-top: 24px;
}
.email-panel form {
  max-width: 720px;
}
.email-panel form > .primary {
  margin-top: 18px;
}
.email-example {
  background: #f4f7f5;
  border-left: 3px solid #a4c9b4;
  padding: 15px 20px;
  margin: 20px 0;
  font-size: 12px;
}
.email-example p {
  margin-bottom: 0;
}
.session-card .empty-symbol {
  width: 42px;
  height: 42px;
  margin: 0;
  border-radius: 10px;
}
.session-card .empty-symbol svg {
  width: 20px;
  height: 20px;
}
@media (min-width: 1600px) {
  .content {
    padding: 45px 60px;
  }
  .topbar,
  .main-footer {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (max-width: 1100px) {
  .sidebar {
    width: 205px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .main {
    margin-left: 205px;
  }
  .content {
    padding: 30px 25px;
  }
  .topbar,
  .main-footer {
    padding-left: 25px;
    padding-right: 25px;
  }
  .metric {
    padding: 16px;
  }
  .metric-icon {
    display: none;
  }
  td,
  th {
    padding-left: 15px;
    padding-right: 15px;
  }
  .settings-grid {
    grid-template-columns: 1fr;
  }
  .login-story {
    padding: 40px;
  }
  .login-story h1 {
    font-size: 38px;
  }
}
@media (max-width: 760px) {
  .app-shell {
    display: block;
  }
  .sidebar {
    position: static;
    width: 100%;
    padding: 16px 18px;
    display: block;
  }
  .sidebar .wordmark {
    font-size: 18px;
  }
  .sidebar .wordmark small,
  .nav-label,
  .sidebar-note,
  .sidebar-bottom {
    display: none;
  }
  .sidebar nav {
    display: flex;
    margin-top: 16px;
    gap: 5px;
  }
  .nav-item {
    width: auto;
    flex: 1;
    padding: 9px;
    justify-content: center;
    font-size: 10px;
    margin: 0;
    gap: 6px;
  }
  .nav-count {
    display: none !important;
  }
  .nav-item svg {
    width: 15px;
  }
  .main {
    margin: 0;
  }
  .topbar {
    height: 52px;
    padding: 0 20px;
  }
  .content {
    padding: 25px 18px;
  }
  .page-heading {
    align-items: flex-start;
    gap: 12px;
  }
  .page-heading h1 {
    font-size: 25px;
  }
  .page-actions {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .page-actions .secondary {
    display: none;
  }
  .metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .metric {
    padding: 14px;
  }
  .metric-value {
    font-size: 25px;
  }
  .toolbar {
    padding: 13px;
    gap: 8px;
    flex-wrap: wrap;
  }
  .search {
    max-width: none;
    min-width: 100%;
  }
  .toolbar select {
    flex: 1;
  }
  .feature-strip {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .main-footer {
    padding: 18px;
  }
  .main-footer span:last-child {
    display: none;
  }
  .dialog-header,
  .dialog-footer {
    padding: 18px;
  }
  .dialog-body {
    padding: 18px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .span-2 {
    grid-column: auto;
  }
  .form-options {
    gap: 5px;
  }
  .check-row {
    grid-template-columns: 110px 75px 1fr;
    font-size: 10px;
    gap: 8px;
  }
  .login-layout {
    grid-template-columns: 1fr;
  }
  .login-story {
    min-height: 0;
    padding: 25px;
  }
  .login-story > div:nth-child(2),
  .login-story > .muted {
    display: none;
  }
  .login-panel {
    min-height: 75vh;
    padding: 35px 25px;
  }
  .dialog-footer .help {
    display: none;
  }
  .activity-time {
    max-width: 80px;
  }
  .local-badge {
    font-size: 9px;
  }
}
