:root {
  --bg: #fbf9f5;
  --bg-tint: #fdfdfb;
  --surface: #ffffff;
  --surface-2: #fcfbf8;
  --surface-sunken: #f3f1ec;
  --ink: #1a1c1f;
  --ink-2: #565a61;
  --ink-3: #888a86;
  --ink-4: #b6b4ac;
  --line: #efece6;
  --line-strong: #e4e0d8;
  --accent: #2fb457;
  --accent-ink: #1f8a44;
  --accent-soft: #e6f6ec;
  --accent-soft-line: #c8ecd4;
  --blue: #2f80ed;
  --danger: #e5484d;
  --danger-soft: #fdecec;
  --warn: #d98a00;
  --warn-soft: #fbf1da;
  --r-xl: 28px;
  --r-lg: 22px;
  --r-md: 16px;
  --r-sm: 11px;
  --r-pill: 999px;
  --shadow-card: 0 1px 2px rgba(28, 28, 30, 0.04), 0 8px 24px rgba(28, 28, 30, 0.05);
  --shadow-soft: 0 1px 2px rgba(28, 28, 30, 0.03), 0 4px 14px rgba(28, 28, 30, 0.04);
  --shadow-pop: 0 6px 16px rgba(28, 28, 30, 0.08), 0 24px 60px rgba(28, 28, 30, 0.12);
  --sans: "Public Sans", "PingFang SC", "Noto Sans SC", -apple-system, BlinkMacSystemFont, "SF Pro Display", system-ui, "Microsoft YaHei", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  padding: 0;
}

body {
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
input {
  font-family: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

.room {
  min-height: 100vh;
  min-height: 100dvh;
  background:
    radial-gradient(130% 90% at 50% -10%, #fefefc 0%, var(--bg) 62%),
    var(--bg);
  position: relative;
}

.pill {
  align-items: center;
  background: var(--surface-sunken);
  border-radius: var(--r-pill);
  color: var(--ink-2);
  display: inline-flex;
  font-size: 12px;
  font-weight: 600;
  gap: 6px;
  height: 26px;
  letter-spacing: 0.01em;
  padding: 0 10px;
  white-space: nowrap;
}

.pill--ok {
  background: var(--accent-soft);
  color: var(--accent-ink);
}

.btn {
  align-items: center;
  background: var(--surface-sunken);
  border: 1px solid transparent;
  border-radius: var(--r-md);
  color: var(--ink);
  display: inline-flex;
  font-size: 15px;
  font-weight: 600;
  gap: 8px;
  height: 44px;
  justify-content: center;
  letter-spacing: 0.01em;
  padding: 0 18px;
  text-decoration: none;
  transition: transform 0.12s ease, background 0.15s ease, box-shadow 0.15s ease, opacity 0.15s;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: var(--ink);
  color: #fff;
}

.btn--primary:hover {
  background: #000;
}

.btn--accent {
  background: var(--accent);
  box-shadow: 0 1px 2px rgba(31, 138, 68, 0.25);
  color: #fff;
}

.btn--accent:hover {
  background: var(--accent-ink);
}

.btn--ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink-2);
}

.btn--ghost:hover {
  background: var(--surface-sunken);
  color: var(--ink);
}

.btn--danger-ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--danger);
}

.btn--danger-ghost:hover {
  background: var(--danger-soft);
  border-color: var(--danger-soft);
}

.btn--sm {
  border-radius: var(--r-sm);
  font-size: 13px;
  height: 34px;
  padding: 0 12px;
}

.btn--block {
  width: 100%;
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

.field-label {
  color: var(--ink-3);
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.input {
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  color: var(--ink);
  font-size: 15px;
  height: 44px;
  padding: 0 13px;
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
}

.input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
  outline: none;
}

.input::placeholder {
  color: var(--ink-4);
}

.mono {
  font-family: var(--mono);
}

.card {
  background: var(--surface);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
}

.hidden {
  display: none !important;
}

.visitor {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 28px 20px 24px;
}

.visitor-shell {
  max-width: 412px;
  width: 100%;
}

.brand-mark {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-bottom: 22px;
  text-align: center;
}

.brand-logo,
.admin-logo {
  background: linear-gradient(160deg, #34c759, #1f8a44);
  box-shadow: 0 6px 18px rgba(31, 138, 68, 0.28);
  color: #fff;
  display: grid;
  place-items: center;
}

.brand-logo {
  border-radius: 15px;
  height: 52px;
  margin-bottom: 14px;
  width: 52px;
}

.brand-title {
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
}

.brand-sub {
  color: var(--ink-3);
  font-size: 14.5px;
  line-height: 1.45;
  margin: 7px 0 0;
}

.enter-card {
  padding: 26px 22px 22px;
}

.code-caption {
  color: var(--ink-3);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  text-align: center;
  text-transform: uppercase;
}

.code-boxes {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: center;
}

.code-boxes .sep {
  color: var(--ink-4);
  font-size: 22px;
  font-weight: 700;
  padding: 0 1px;
}

.code-box {
  background: var(--surface-2);
  border: 1.5px solid var(--line-strong);
  border-radius: 13px;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 24px;
  font-weight: 600;
  height: 56px;
  text-align: center;
  text-transform: uppercase;
  transition: border-color 0.14s, box-shadow 0.14s, background 0.14s;
  width: 44px;
}

.code-box:focus {
  background: #fff;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
  outline: none;
}

.code-boxes.err .code-box {
  background: var(--danger-soft);
  border-color: #f0b6b8;
}

.code-boxes.shake {
  animation: shake 0.4s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

@keyframes shake {
  10%, 90% { transform: translateX(-1px); }
  20%, 80% { transform: translateX(2px); }
  30%, 50%, 70% { transform: translateX(-4px); }
  40%, 60% { transform: translateX(4px); }
}

.notice {
  align-items: flex-start;
  border-radius: var(--r-md);
  display: flex;
  font-size: 13.5px;
  gap: 10px;
  line-height: 1.4;
  margin-top: 16px;
  padding: 12px 14px;
}

.notice--danger {
  background: var(--danger-soft);
  color: #b3282d;
}

.notice--warn {
  background: var(--warn-soft);
  color: #9a6500;
}

.notice .ni {
  flex: none;
  margin-top: 1px;
}

.enter-foot {
  margin-top: 18px;
}

.visitor-meta {
  color: var(--ink-4);
  font-size: 12.5px;
  margin-top: 22px;
  text-align: center;
}

.visitor-meta a {
  border-bottom: 1px solid var(--line-strong);
  color: var(--ink-3);
  font-weight: 600;
  padding-bottom: 1px;
  text-decoration: none;
}

.visitor-meta a:hover {
  color: var(--ink);
}

.lock-row {
  align-items: center;
  display: inline-flex;
  gap: 6px;
  margin-bottom: 12px;
  white-space: nowrap;
}

.closed-card {
  padding: 30px 24px;
  text-align: center;
}

.closed-ic,
.logout-ic {
  background: var(--surface-sunken);
  color: var(--ink-3);
  display: grid;
  margin: 0 auto 14px;
  place-items: center;
}

.closed-ic {
  border-radius: 13px;
  height: 46px;
  width: 46px;
}

.closed-card h2 {
  font-size: 17px;
  margin: 0 0 6px;
}

.closed-card p {
  color: var(--ink-3);
  font-size: 13.5px;
  line-height: 1.5;
  margin: 0;
}

.admin {
  margin: 0 auto;
  max-width: 1140px;
  padding: 26px 22px 80px;
}

.admin-top {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 22px;
}

.admin-top .lead {
  align-items: center;
  display: flex;
  gap: 12px;
}

.admin-logo {
  border-radius: 11px;
  height: 38px;
  width: 38px;
}

.admin-title {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
}

.admin-title small {
  color: var(--ink-3);
  display: block;
  font-size: 12.5px;
  font-weight: 500;
  margin-top: 2px;
  white-space: nowrap;
}

.admin-user {
  align-items: center;
  display: flex;
  gap: 10px;
}

.avatar {
  background: var(--surface-sunken);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink-2);
  display: grid;
  font-size: 12px;
  font-weight: 700;
  height: 30px;
  place-items: center;
  width: 30px;
}

.switch-banner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 18px 20px;
}

.switch-banner .sb-copy {
  align-items: center;
  display: flex;
  gap: 14px;
}

.sb-state-ic {
  border-radius: 12px;
  display: grid;
  flex: none;
  height: 40px;
  place-items: center;
  width: 40px;
}

.sb-state-ic.on {
  background: var(--accent-soft);
  color: var(--accent-ink);
}

.sb-state-ic.off {
  background: var(--surface-sunken);
  color: var(--ink-3);
}

.sb-copy h2 {
  font-size: 15.5px;
  font-weight: 700;
  margin: 0;
}

.sb-copy p {
  color: var(--ink-3);
  font-size: 13px;
  line-height: 1.4;
  margin: 3px 0 0;
  max-width: 52ch;
}

.toggle {
  background: var(--line-strong);
  border: none;
  border-radius: var(--r-pill);
  flex: none;
  height: 30px;
  position: relative;
  transition: background 0.2s;
  width: 52px;
}

.toggle.on {
  background: var(--accent);
}

.toggle .knob {
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  height: 24px;
  left: 3px;
  position: absolute;
  top: 3px;
  transition: transform 0.2s;
  width: 24px;
}

.toggle.on .knob {
  transform: translateX(22px);
}

.statstrip {
  align-items: stretch;
  display: flex;
  margin-bottom: 20px;
  overflow: hidden;
}

.statstrip .stat {
  align-items: center;
  display: flex;
  flex: 1;
  gap: 12px;
  padding: 16px 20px;
}

.statstrip .stat-ic {
  background: var(--surface-sunken);
  border-radius: 10px;
  color: var(--ink-3);
  display: grid;
  flex: none;
  height: 34px;
  place-items: center;
  width: 34px;
}

.statstrip .stat-ic.accent {
  background: var(--accent-soft);
  color: var(--accent-ink);
}

.statstrip .stat-n {
  color: var(--ink);
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.statstrip .stat-n.accent {
  color: var(--accent-ink);
}

.statstrip .stat-l {
  color: var(--ink-3);
  font-size: 12px;
  margin-top: 4px;
  white-space: nowrap;
}

.statstrip .ss-div {
  background: var(--line);
  margin: 14px 0;
  width: 1px;
}

.admin-grid {
  align-items: start;
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1fr) 360px;
}

.col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.panel {
  padding: 20px;
}

.panel-head {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 16px;
}

.panel-head h2 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.005em;
  margin: 0;
}

.panel-head .ph-sub {
  color: var(--ink-3);
  font-size: 12.5px;
  white-space: nowrap;
}

.form-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.field-block {
  margin-bottom: 14px;
}

.submit-cell {
  align-items: flex-end;
  display: flex;
}

.seg {
  background: var(--surface-sunken);
  border-radius: var(--r-md);
  display: flex;
  gap: 6px;
  padding: 4px;
}

.seg button {
  background: transparent;
  border: none;
  border-radius: 10px;
  color: var(--ink-3);
  flex: 1;
  font-size: 13px;
  font-weight: 600;
  height: 34px;
  transition: all 0.15s;
}

.seg button.on {
  background: #fff;
  box-shadow: var(--shadow-soft);
  color: var(--ink);
}

.stepper {
  align-items: center;
  display: flex;
  gap: 8px;
}

.stepper .btn {
  border-radius: 12px;
  height: 40px;
  padding: 0;
  width: 40px;
}

.stepper-value {
  align-items: baseline;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  display: flex;
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 700;
  gap: 3px;
  height: 40px;
  justify-content: center;
  min-width: 64px;
  padding-top: 9px;
}

.stepper-value span {
  color: var(--ink-3);
  font-family: var(--sans);
  font-size: 12px;
}

.svc-pick {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
}

.svc-opt {
  align-items: center;
  background: var(--surface-2);
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  display: flex;
  gap: 9px;
  padding: 10px;
  text-align: left;
  transition: all 0.14s;
}

.svc-opt:hover {
  border-color: var(--line-strong);
}

.svc-opt.on {
  background: var(--accent-soft);
  border-color: var(--accent);
}

.svc-swatch {
  border-radius: 8px;
  color: #fff;
  display: grid;
  flex: none;
  font-weight: 700;
  place-items: center;
}

.svc-opt .so-name {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.15;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.svc-opt .so-id {
  color: var(--ink-4);
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  margin-top: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.result {
  animation: pop 0.3s ease;
  background: var(--accent-soft);
  border: 1.5px dashed var(--accent-soft-line);
  border-radius: var(--r-lg);
  margin-top: 16px;
  padding: 18px;
}

@keyframes pop {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}

.result .r-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.result .r-label {
  color: var(--accent-ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.result .r-code {
  color: var(--accent-ink);
  font-family: var(--mono);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.result .r-link {
  align-items: center;
  background: #fff;
  border: 1px solid var(--accent-soft-line);
  border-radius: var(--r-md);
  display: flex;
  gap: 8px;
  padding: 9px 9px 9px 13px;
}

.result .url {
  color: var(--ink-2);
  flex: 1;
  font-family: var(--mono);
  font-size: 12.5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.result .r-once {
  align-items: center;
  color: #9a6500;
  display: flex;
  font-size: 12px;
  font-weight: 600;
  gap: 7px;
  margin-top: 11px;
}

.svc-overview {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.svc-card {
  align-items: center;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  display: flex;
  gap: 11px;
  padding: 12px;
}

.svc-card .sc-name {
  font-size: 13.5px;
  font-weight: 600;
}

.svc-card .sc-desc {
  color: var(--ink-3);
  font-size: 11.5px;
  margin-top: 1px;
}

.svc-card .sc-id {
  color: var(--ink-4);
  font-family: var(--mono);
  font-size: 10.5px;
  margin-top: 3px;
}

.svc-stat {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-left: auto;
  text-align: right;
}

.svc-stat .ss-n {
  color: var(--ink);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.svc-stat .ss-n em {
  color: var(--ink-3);
  font-family: var(--sans);
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  margin-left: 2px;
}

.svc-stat .ss-idle {
  color: var(--ink-4);
  font-size: 12px;
  font-weight: 600;
}

.svc-stat.busy .ss-n {
  color: var(--accent-ink);
}

.ctable {
  display: flex;
  flex-direction: column;
}

.crow {
  align-items: center;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1.4fr) 1fr 76px 64px 84px 58px;
  padding: 13px 6px;
}

.crow.head {
  border-top: none;
  padding-bottom: 9px;
  padding-top: 0;
}

.crow.head span {
  color: var(--ink-4);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.crow .c-note {
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 600;
}

.crow .c-meta {
  color: var(--ink-4);
  font-size: 11.5px;
  margin-top: 2px;
}

.crow .c-svc {
  align-items: center;
  color: var(--ink-2);
  display: inline-flex;
  font-size: 12.5px;
  font-weight: 600;
  gap: 7px;
}

.crow .c-use {
  color: var(--ink-2);
  font-family: var(--mono);
  font-size: 13px;
}

.crow .c-exp {
  color: var(--ink-2);
  font-size: 12.5px;
}

.crow .c-act {
  text-align: right;
}

.crow.spent {
  opacity: 0.62;
}

.status {
  align-items: center;
  display: inline-flex;
  font-size: 12px;
  font-weight: 600;
  gap: 5px;
}

.status .sdot {
  border-radius: 50%;
  height: 7px;
  width: 7px;
}

.status.live {
  color: var(--accent-ink);
}

.status.live .sdot {
  background: var(--accent);
}

.status.spent {
  color: var(--ink-3);
}

.status.spent .sdot {
  background: var(--ink-4);
}

.status.expired {
  color: var(--warn);
}

.status.expired .sdot {
  background: var(--warn);
}

.status.revoked {
  color: var(--danger);
}

.status.revoked .sdot {
  background: var(--danger);
}

.link-btn {
  background: none;
  border: none;
  color: var(--danger);
  font-size: 12.5px;
  font-weight: 600;
  padding: 4px 0;
}

.link-btn.muted {
  color: var(--ink-3);
}

.sess-list {
  display: flex;
  flex-direction: column;
}

.sess-row {
  align-items: flex-start;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 11px;
  padding: 12px 4px;
}

.sess-row:first-child {
  border-top: none;
}

.sess-row .s-main {
  flex: 1;
  min-width: 0;
}

.sess-row .s-head {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: space-between;
}

.sess-row .s-head b {
  font-size: 13.5px;
  font-weight: 600;
}

.sess-row .s-ip {
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 12px;
  margin-top: 3px;
}

.sess-row .s-times {
  color: var(--ink-4);
  font-size: 11.5px;
  margin-top: 4px;
}

.sess-row .s-times b {
  color: var(--ink-2);
  font-weight: 600;
}

.empty {
  color: var(--ink-3);
  padding: 30px 16px;
  text-align: center;
}

.empty .e-ic {
  background: var(--surface-sunken);
  border-radius: 12px;
  color: var(--ink-4);
  display: grid;
  height: 42px;
  margin: 0 auto 12px;
  place-items: center;
  width: 42px;
}

.empty p {
  font-size: 13.5px;
  margin: 0;
}

.empty .e-hint {
  color: var(--ink-4);
  font-size: 12px;
  margin-top: 4px;
}

.toast-wrap {
  align-items: center;
  bottom: 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  left: 50%;
  position: fixed;
  transform: translateX(-50%);
  z-index: 70;
}

.toast {
  align-items: center;
  animation: toastin 0.25s ease;
  background: var(--ink);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-pop);
  color: #fff;
  display: inline-flex;
  font-size: 13.5px;
  font-weight: 600;
  gap: 9px;
  padding: 11px 16px;
}

@keyframes toastin {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

.toast .tk {
  color: #5ee08a;
  display: inline-flex;
}

.scrim {
  animation: fade 0.2s ease;
  background: rgba(28, 28, 30, 0.34);
  display: grid;
  inset: 0;
  padding: 20px;
  place-items: center;
  position: fixed;
  z-index: 80;
}

@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.sheet {
  animation: pop 0.25s ease;
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-pop);
  max-width: 380px;
  padding: 22px;
  width: 100%;
}

.sheet h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 7px;
}

.sheet p {
  color: var(--ink-3);
  font-size: 13.5px;
  line-height: 1.5;
  margin: 0 0 18px;
}

.sheet .row,
.logout-actions {
  display: flex;
  gap: 10px;
}

.sheet .row .btn,
.logout-actions .btn {
  flex: 1;
}

.logout {
  display: grid;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 24px;
  place-items: center;
}

.logout-card {
  max-width: 380px;
  padding: 32px 26px;
  text-align: center;
  width: 100%;
}

.logout-ic {
  border-radius: 14px;
  height: 50px;
  margin-bottom: 16px;
  width: 50px;
}

.logout-card.done .logout-ic {
  background: var(--accent-soft);
  color: var(--accent-ink);
}

.logout-card h2 {
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 8px;
}

.logout-card p {
  color: var(--ink-3);
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 22px;
}

@media (max-width: 920px) {
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .col.side {
    order: -1;
  }
}

@media (max-width: 680px) {
  .admin {
    padding: 18px 14px 90px;
  }

  .statstrip .stat {
    gap: 9px;
    padding: 13px 12px;
  }

  .statstrip .stat-ic {
    height: 30px;
    width: 30px;
  }

  .statstrip .stat-n {
    font-size: 19px;
  }

  .statstrip .stat-l {
    font-size: 11px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .crow {
    gap: 6px 10px;
    grid-template-columns: 1fr auto;
  }

  .crow.head {
    display: none;
  }

  .crow .c-svc-cell {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    text-align: right;
  }

  .crow .c-status-cell {
    grid-column: 1;
    grid-row: 2;
  }

  .crow .c-use-cell {
    grid-column: 2;
    grid-row: 2;
    justify-self: end;
    text-align: right;
  }

  .crow .c-exp-cell {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .crow .c-act {
    grid-column: 1 / -1;
    grid-row: 4;
    text-align: left;
  }

  .crow .c-act .btn {
    width: 100%;
  }

  .sess-row {
    flex-wrap: wrap;
  }
}
