:root {
  color-scheme: dark;
  --bg: #050b16;
  --bg-2: #081120;
  --panel: rgba(15, 27, 47, 0.88);
  --panel-2: rgba(18, 32, 55, 0.72);
  --line: rgba(96, 130, 180, 0.28);
  --line-strong: rgba(83, 145, 255, 0.55);
  --text: #edf5ff;
  --muted: #8ea3bf;
  --muted-2: #62728b;
  --blue: #247bff;
  --blue-2: #21b8ff;
  --green: #42e77b;
  --orange: #ffab2e;
  --red: #ff5d64;
  --purple: #a06bff;
  --shadow: 0 18px 42px rgba(0, 8, 24, 0.38);
  font-family: "Microsoft YaHei", "PingFang SC", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 1160px;
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(180deg, rgba(11, 25, 48, 0.62), rgba(5, 11, 22, 0.98)),
    radial-gradient(circle at 55% 0%, rgba(31, 107, 255, 0.18), transparent 36%),
    var(--bg);
  color: var(--text);
  letter-spacing: 0;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.app-shell {
  display: grid;
  grid-template-columns: 236px minmax(0, 1fr);
  min-height: 100vh;
}

.sidebar {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  height: 100vh;
  padding: 30px 20px 20px;
  background: linear-gradient(180deg, rgba(13, 25, 46, 0.98), rgba(8, 16, 31, 0.96));
  border-right: 1px solid var(--line);
  box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.02);
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 44px;
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
}

.brand-mark,
.user-avatar {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(74, 152, 255, 0.65);
  border-radius: 8px;
  color: #7eb8ff;
  background: rgba(31, 107, 255, 0.16);
  box-shadow: 0 0 18px rgba(34, 127, 255, 0.32);
}

.nav {
  display: grid;
  align-content: start;
  gap: 14px;
  margin-top: 42px;
}

.nav button {
  position: relative;
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 0 14px;
  color: #9fb0c8;
  text-align: left;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
}

.nav button:hover,
.nav button.is-active {
  color: #ffffff;
  background: linear-gradient(90deg, rgba(33, 184, 255, 0.28), rgba(36, 123, 255, 0.52));
  border-color: rgba(93, 157, 255, 0.5);
  box-shadow: 0 12px 26px rgba(20, 94, 220, 0.26), inset 0 0 18px rgba(255, 255, 255, 0.03);
}

.nav button.is-active::before {
  position: absolute;
  left: -1px;
  width: 3px;
  height: 28px;
  content: "";
  background: #27c5ff;
  border-radius: 0 4px 4px 0;
}

.sidebar-footer {
  display: grid;
  grid-template-columns: 38px 1fr 20px;
  align-items: center;
  gap: 10px;
  padding-top: 22px;
  border-top: 1px solid rgba(122, 152, 199, 0.18);
}

.user-avatar {
  width: 38px;
  height: 38px;
  color: #d7ebff;
}

.user-name {
  font-size: 14px;
  font-weight: 700;
}

.user-role {
  margin-top: 3px;
  font-size: 12px;
  color: var(--muted);
}

.main {
  min-width: 0;
  padding: 28px 30px 36px;
}

.page-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 22px;
}

.title-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.page-icon {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #55a6ff;
  border: 1px solid rgba(79, 151, 255, 0.55);
  border-radius: 8px;
  background: rgba(30, 98, 227, 0.12);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: 28px;
  line-height: 1.2;
}

.subtitle {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.time-chip,
.select-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  color: #b8c9df;
  background: rgba(17, 30, 52, 0.76);
  border: 1px solid rgba(116, 151, 201, 0.24);
  border-radius: 6px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 18px;
}

.metric-card,
.panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(17, 32, 57, 0.92), rgba(11, 21, 39, 0.84));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.metric-card {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 16px;
  min-height: 120px;
  padding: 24px 24px 20px;
}

.metric-icon {
  display: inline-grid;
  place-items: center;
  align-self: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--blue-2);
  background: rgba(35, 123, 255, 0.18);
}

.metric-icon.green {
  color: var(--green);
  background: rgba(66, 231, 123, 0.14);
}

.metric-icon.orange {
  color: var(--orange);
  background: rgba(255, 171, 46, 0.14);
}

.metric-icon.purple {
  color: var(--purple);
  background: rgba(160, 107, 255, 0.14);
}

.metric-label {
  color: #c9d6e8;
  font-size: 14px;
  font-weight: 700;
}

.metric-value {
  margin-top: 10px;
  font-size: 28px;
  font-weight: 800;
}

.metric-note {
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
}

.metric-note.up {
  color: #4adfff;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
}

.wide-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(0, 1fr);
  gap: 18px;
}

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

.panel {
  padding: 20px;
}

.panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 34px;
  margin-bottom: 16px;
}

.panel-title h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
}

.panel-title h2 svg {
  color: var(--blue-2);
}

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

.panel-note,
.pager-note,
.credential-hint,
.login-help {
  color: var(--muted);
  font-size: 12px;
}

.form-grid {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  align-items: center;
  gap: 14px 18px;
}

.form-grid.two {
  grid-template-columns: 92px minmax(0, 1fr) 92px minmax(0, 1fr);
}

.form-grid label {
  color: #c5d2e4;
  font-size: 13px;
}

.stack {
  display: grid;
  gap: 12px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 36px;
  padding: 0 12px;
  color: var(--text);
  background: rgba(8, 15, 27, 0.84);
  border: 1px solid rgba(123, 151, 192, 0.28);
  border-radius: 6px;
  outline: 0;
}

textarea {
  min-height: 86px;
  padding: 11px 12px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(57, 148, 255, 0.85);
  box-shadow: 0 0 0 3px rgba(36, 123, 255, 0.13);
}

.input-action {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 34px;
  align-items: center;
  min-height: 36px;
  background: rgba(8, 15, 27, 0.84);
  border: 1px solid rgba(123, 151, 192, 0.28);
  border-radius: 6px;
}

.input-action input {
  min-height: 34px;
  padding: 0;
  background: transparent;
  border: 0;
}

.input-action svg {
  justify-self: center;
  color: var(--muted);
}

.input-action button {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 6px;
}

.input-action button:hover {
  color: #ffffff;
  background: rgba(73, 130, 220, 0.18);
}

.stepper {
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  align-items: center;
  min-height: 36px;
  border: 1px solid rgba(123, 151, 192, 0.28);
  border-radius: 6px;
  overflow: hidden;
}

.stepper button {
  display: grid;
  place-items: center;
  height: 36px;
  color: #c6d6ed;
  background: rgba(12, 24, 42, 0.82);
  border: 0;
}

.stepper input {
  min-height: 36px;
  text-align: center;
  background: rgba(8, 15, 27, 0.84);
  border: 0;
  border-radius: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 16px;
  color: #ffffff;
  white-space: nowrap;
  background: linear-gradient(135deg, #2995ff, #095dff);
  border: 1px solid rgba(92, 169, 255, 0.45);
  border-radius: 6px;
  box-shadow: 0 12px 26px rgba(20, 94, 220, 0.26);
}

.btn:hover {
  filter: brightness(1.08);
}

.btn.secondary {
  color: #cce0ff;
  background: rgba(15, 31, 54, 0.94);
  border-color: rgba(121, 155, 206, 0.3);
  box-shadow: none;
}

.btn.danger {
  color: #ffdce0;
  background: rgba(152, 38, 50, 0.26);
  border-color: rgba(255, 93, 100, 0.38);
  box-shadow: none;
}

.form-actions {
  grid-column: 2 / -1;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.searchbar {
  display: grid;
  grid-template-columns: 34px minmax(180px, 1fr);
  align-items: center;
  width: 240px;
  min-height: 34px;
  color: var(--muted);
  background: rgba(12, 23, 41, 0.84);
  border: 1px solid rgba(123, 151, 192, 0.24);
  border-radius: 6px;
}

.searchbar input {
  min-height: 32px;
  padding: 0 10px 0 0;
  background: transparent;
  border: 0;
}

.searchbar svg {
  justify-self: center;
}

.table-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  border: 1px solid rgba(116, 151, 201, 0.2);
  border-radius: 8px;
}

.ui-check-wrap {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  cursor: pointer;
}

.ui-check {
  position: absolute;
  width: 1px;
  min-height: 1px;
  opacity: 0;
  pointer-events: none;
}

.ui-check + span {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  background: rgba(8, 18, 34, 0.9);
  border: 1px solid rgba(116, 151, 201, 0.42);
  border-radius: 5px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.ui-check:checked + span {
  background: linear-gradient(135deg, #2cb4ff, #176cff);
  border-color: rgba(117, 190, 255, 0.92);
  box-shadow: 0 0 18px rgba(32, 137, 255, 0.36);
}

.ui-check:checked + span::after {
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  content: "";
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.ui-check:focus-visible + span {
  box-shadow: 0 0 0 3px rgba(36, 123, 255, 0.22);
}

.ui-check:disabled + span {
  cursor: not-allowed;
  opacity: 0.38;
  background: rgba(47, 60, 80, 0.52);
  border-color: rgba(116, 151, 201, 0.16);
  box-shadow: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

th,
td {
  height: 44px;
  padding: 0 6px;
  text-align: left;
  white-space: nowrap;
  border-bottom: 1px solid rgba(116, 151, 201, 0.15);
}

th {
  color: #aac0df;
  font-weight: 700;
  background: rgba(12, 24, 43, 0.72);
}

tr:last-child td {
  border-bottom: 0;
}

tbody tr:hover td {
  background: rgba(43, 102, 184, 0.12);
}

.status {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  font-size: 12px;
  font-weight: 800;
  border-radius: 5px;
}

.status.valid,
.status.normal {
  color: #5af08a;
  background: rgba(38, 149, 71, 0.26);
}

.status.expiring,
.status.warning {
  color: #ffc14a;
  background: rgba(178, 119, 0, 0.28);
}

.status.expired,
.status.danger {
  color: #ff7379;
  background: rgba(163, 38, 49, 0.28);
}

.status.used {
  color: #b9c2d2;
  background: rgba(119, 135, 161, 0.22);
}

.link-btn,
.icon-btn {
  color: #57a8ff;
  background: transparent;
  border: 0;
  border-radius: 5px;
}

.link-btn {
  min-height: 28px;
  padding: 0 5px;
  font-weight: 700;
}

.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-left: 2px;
}

.link-btn:hover,
.icon-btn:hover {
  color: #ffffff;
  background: rgba(79, 147, 255, 0.16);
}

button:disabled,
.icon-btn:disabled,
.link-btn:disabled {
  cursor: not-allowed;
  opacity: 0.42;
  filter: none;
}

.danger-icon:not(:disabled) {
  color: var(--red);
}

.danger-icon:not(:disabled):hover {
  color: #fff;
  background: rgba(255, 93, 100, 0.16);
}

.table-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

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

.pager button,
.pager span {
  display: inline-grid;
  place-items: center;
  min-width: 30px;
  height: 30px;
  color: #c7d7ee;
  background: rgba(15, 31, 54, 0.8);
  border: 1px solid rgba(121, 155, 206, 0.18);
  border-radius: 5px;
}

.pager .current {
  color: #ffffff;
  background: linear-gradient(135deg, rgba(43, 139, 255, 0.7), rgba(34, 80, 159, 0.82));
}

.credential-box {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.credential-hint {
  margin: 12px 0 0;
}

.credential-box textarea {
  min-height: 128px;
  color: #d9ecff;
  font-family: Consolas, "Microsoft YaHei", monospace;
}

.toast {
  position: fixed;
  right: 26px;
  bottom: 24px;
  z-index: 20;
  max-width: 420px;
  padding: 13px 16px;
  color: #dbeaff;
  background: rgba(12, 24, 43, 0.96);
  border: 1px solid rgba(79, 151, 255, 0.42);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.empty {
  padding: 26px;
  color: var(--muted);
  text-align: center;
}

.chart {
  min-height: 310px;
  padding: 12px 4px 0;
}

.chart svg {
  width: 100%;
  height: 278px;
}

.chart-grid {
  stroke: rgba(126, 156, 202, 0.16);
  stroke-width: 1;
}

.chart-line-green {
  fill: none;
  stroke: #54df79;
  stroke-width: 3;
}

.chart-line-blue {
  fill: none;
  stroke: #4b8fff;
  stroke-width: 3;
}

.chart-line-orange {
  fill: none;
  stroke: #ffab2e;
  stroke-width: 3;
}

.legend {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #bdd0e7;
  font-size: 13px;
}

.legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}

.dot.green {
  background: var(--green);
}

.dot.orange {
  background: var(--orange);
}

.dot.red {
  background: var(--red);
}

.login-page {
  display: grid;
  grid-template-columns: minmax(480px, 1fr) 584px;
  align-items: center;
  min-height: 100vh;
  padding: 54px 8vw;
  background:
    linear-gradient(90deg, rgba(5, 11, 22, 0.2), rgba(5, 11, 22, 0.92)),
    radial-gradient(circle at 24% 58%, rgba(24, 177, 255, 0.22), transparent 28%),
    linear-gradient(180deg, #071327, #030712);
}

.login-visual {
  position: relative;
  min-height: 580px;
}

.login-brand {
  position: absolute;
  top: 68px;
  left: 110px;
  display: grid;
  justify-items: center;
  gap: 18px;
}

.login-logo {
  display: grid;
  place-items: center;
  width: 96px;
  height: 110px;
  color: #2788ff;
  filter: drop-shadow(0 0 24px rgba(36, 123, 255, 0.65));
}

.login-brand h1 {
  font-size: 42px;
  letter-spacing: 0;
}

.login-brand p {
  font-size: 24px;
  color: #99a8bd;
}

.security-stage {
  position: absolute;
  left: 80px;
  bottom: 76px;
  width: 440px;
  height: 260px;
}

.security-stage::before,
.security-stage::after {
  position: absolute;
  left: 50%;
  content: "";
  border: 1px solid rgba(44, 145, 255, 0.46);
  border-radius: 50%;
  transform: translateX(-50%);
}

.security-stage::before {
  bottom: 18px;
  width: 360px;
  height: 80px;
  box-shadow: 0 0 34px rgba(23, 178, 255, 0.25);
}

.security-stage::after {
  bottom: 48px;
  width: 250px;
  height: 58px;
}

.stage-platform {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 260px;
  height: 74px;
  background: linear-gradient(180deg, rgba(22, 97, 179, 0.7), rgba(6, 19, 42, 0.1));
  border: 1px solid rgba(42, 158, 255, 0.32);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 42px rgba(26, 173, 255, 0.32);
}

.stage-shield {
  position: absolute;
  left: 50%;
  bottom: 80px;
  display: grid;
  place-items: center;
  width: 124px;
  height: 144px;
  color: #47c9ff;
  background: linear-gradient(135deg, rgba(48, 171, 255, 0.52), rgba(14, 48, 105, 0.5));
  clip-path: polygon(50% 0, 94% 18%, 86% 72%, 50% 100%, 14% 72%, 6% 18%);
  transform: translateX(-50%);
  box-shadow: 0 0 34px rgba(36, 177, 255, 0.5);
}

.stage-lines {
  position: absolute;
  inset: auto 0 4px;
  height: 200px;
  background-image:
    linear-gradient(rgba(31, 128, 255, 0.42), rgba(31, 128, 255, 0)),
    linear-gradient(rgba(31, 128, 255, 0.35), rgba(31, 128, 255, 0)),
    linear-gradient(rgba(31, 128, 255, 0.26), rgba(31, 128, 255, 0));
  background-position: 22px 0, 140px 54px, 360px 24px;
  background-size: 2px 170px, 2px 120px, 2px 146px;
  background-repeat: no-repeat;
  opacity: 0.95;
}

.login-card {
  width: 584px;
  padding: 54px 50px 48px;
  background: linear-gradient(145deg, rgba(19, 35, 61, 0.88), rgba(8, 17, 34, 0.86));
  border: 1px solid rgba(122, 156, 208, 0.32);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 6, 19, 0.52), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.login-card h2 {
  font-size: 32px;
}

.login-card .subtitle {
  margin-bottom: 32px;
  font-size: 18px;
}

.login-card label {
  display: block;
  margin: 22px 0 10px;
  color: #e1eaf8;
  font-size: 16px;
  font-weight: 700;
}

.login-card .input-action {
  min-height: 64px;
  grid-template-columns: 52px minmax(0, 1fr) 44px;
  border-radius: 8px;
}

.login-card input {
  min-height: 62px;
  font-size: 17px;
}

.login-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 26px 0 34px;
  color: #b5c5db;
}

.checkbox-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.checkbox-row input {
  width: 18px;
  min-height: 18px;
}

.login-card .btn {
  width: 100%;
  min-height: 68px;
  font-size: 20px;
  font-weight: 800;
}

.login-note {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 34px;
  color: #8ea4c0;
  font-size: 14px;
}

.login-link,
.login-help {
  color: #2f99ff;
  text-decoration: none;
}

.row-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.cdk-manager .form-grid {
  margin-bottom: 16px;
}

.cdk-table {
  margin-top: 16px;
}

.generated-panel {
  margin: 16px 0;
  padding: 16px;
  background: rgba(10, 22, 40, 0.64);
  border: 1px solid rgba(78, 146, 255, 0.28);
  border-radius: 8px;
}

.updates-grid .panel {
  min-width: 0;
}

.update-check-inline {
  min-height: 36px;
  margin: 0;
  color: #c5d2e4;
  font-size: 13px;
}

.update-check-inline input {
  width: 18px;
  min-height: 18px;
}

.guidance-box {
  min-height: 260px;
  color: #d9ecff;
  font-family: Consolas, "Microsoft YaHei", monospace;
  font-size: 12px;
  line-height: 1.55;
}

.code-pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  max-width: 360px;
  padding: 0 8px;
  color: #dcecff;
  font-family: Consolas, "Microsoft YaHei", monospace;
  font-size: 12px;
  background: rgba(8, 15, 27, 0.86);
  border: 1px solid rgba(116, 151, 201, 0.22);
  border-radius: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.code-pill.muted {
  color: var(--muted);
  border-color: rgba(116, 151, 201, 0.14);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(2, 8, 18, 0.72);
  backdrop-filter: blur(10px);
}

.modal-card {
  width: min(760px, calc(100vw - 56px));
  max-height: calc(100vh - 56px);
  padding: 20px;
  overflow: auto;
  background: linear-gradient(145deg, rgba(17, 32, 57, 0.98), rgba(10, 20, 38, 0.98));
  border: 1px solid rgba(96, 150, 230, 0.36);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
}

.modal-card .form-grid.two {
  grid-template-columns: 96px minmax(0, 1fr) 96px minmax(0, 1fr);
}

@media (max-width: 1280px) {
  body {
    min-width: 980px;
  }

  .app-shell {
    grid-template-columns: 214px minmax(0, 1fr);
  }

  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .content-grid,
  .wide-grid {
    grid-template-columns: 1fr;
  }

  .form-grid.two {
    grid-template-columns: 90px minmax(0, 1fr);
  }

  .modal-card .form-grid.two {
    grid-template-columns: 90px minmax(0, 1fr);
  }
}

svg.mini-icon {
  display: inline-block;
  flex: 0 0 auto;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  vertical-align: -0.18em;
}
#app, #jlk-admin-root { min-height: 100vh; }
