:root {
  --bg: #0b1220;
  --sidebar-bg: #0f172a;
  --sidebar-border: #1e293b;
  --surface: #1e293b;
  --surface-hover: #273549;
  --border: #334155;
  --text: #e2e8f0;
  --muted: #94a3b8;
  --accent: #3b82f6;
  --accent-dim: rgba(59, 130, 246, 0.15);
  --danger: #ef4444;
  --success: #22c55e;
  --radius: 8px;
  --sidebar-w: 240px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  font-size: 0.95rem;
}

.page {
  display: none;
}
.page.active {
  display: block;
}

/* Login */
#login-page.active {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.login-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  width: 100%;
  max-width: 400px;
}

.login-card h1 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.login-card .subtitle {
  color: var(--muted);
  margin-bottom: 28px;
  font-size: 0.9rem;
}

.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 6px;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
select,
textarea {
  width: 100%;
  max-width: 420px;
  padding: 10px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
}
select {
  cursor: pointer;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  font-family: inherit;
  transition: background 0.15s;
}
.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover:not(:disabled) {
  background: #2563eb;
}
.btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}
.btn-ghost:hover:not(:disabled) {
  border-color: var(--muted);
}
.btn-small {
  padding: 6px 12px;
  font-size: 0.8rem;
}
.btn-danger {
  background: var(--danger);
  color: #fff;
}

.error-msg {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid var(--danger);
  border-radius: var(--radius);
  padding: 10px 14px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: #fca5a5;
  display: none;
}
.error-msg.visible {
  display: block;
}

.success-msg {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid var(--success);
  border-radius: var(--radius);
  padding: 10px 14px;
  margin-top: 10px;
  font-size: 0.85rem;
  color: #86efac;
  display: none;
}
.success-msg.visible {
  display: block;
}

.login-footer {
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--muted);
}
.login-footer a {
  color: var(--accent);
  cursor: pointer;
  margin-left: 6px;
}

.auth-pending-panel {
  margin-bottom: 20px;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(34, 197, 94, 0.35);
  background: rgba(34, 197, 94, 0.08);
}
.auth-pending-text {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 14px;
}

/* Panel layout */
#panel-page.active {
  display: flex;
  min-height: 100vh;
}

.panel-sidebar {
  width: var(--sidebar-w);
  flex-shrink: 0;
  background: var(--sidebar-bg);
  border-right: 1px solid var(--sidebar-border);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 100;
  overflow: hidden;
}

.panel-sidebar-scroll {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.panel-sidebar-brand {
  padding: 20px 18px;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  border-bottom: 1px solid var(--sidebar-border);
  color: var(--text);
}

.panel-nav-section {
  padding: 10px 0 12px;
  border-bottom: 1px solid var(--sidebar-border);
}
.panel-nav-section:last-child {
  border-bottom: none;
}
.panel-nav-label {
  padding: 8px 18px 4px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.panel-nav a {
  display: block;
  padding: 10px 18px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  border-left: 3px solid transparent;
  transition: background 0.12s, color 0.12s;
}
.panel-nav a:hover {
  background: var(--surface-hover);
  color: var(--text);
}
.panel-nav a.active {
  background: var(--accent-dim);
  color: var(--accent);
  border-left-color: var(--accent);
}

.panel-nav-sub {
  padding-left: 6px;
  margin-top: 2px;
  margin-bottom: 4px;
}
.panel-nav-sub .panel-nav-link,
.panel-nav-sub a {
  padding-left: 22px;
  font-size: 0.82rem;
}
.panel-nav-sub .panel-nav-link.active,
.panel-nav-sub a.active {
  font-weight: 600;
}

.panel-main {
  flex: 1;
  margin-left: var(--sidebar-w);
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.panel-topbar {
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  border-bottom: 1px solid var(--border);
  background: var(--sidebar-bg);
}

.panel-topbar-title {
  font-size: 1.05rem;
  font-weight: 700;
}

.panel-topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--muted);
}

.role-badge {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 7px;
  border-radius: 6px;
  background: rgba(124, 58, 237, 0.25);
  color: #c4b5fd;
}

.panel-content {
  flex: 1;
  padding: 28px 32px 40px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  min-height: 0;
  overflow-x: auto;
  position: relative;
  box-sizing: border-box;
}

.panel-view-root {
  min-height: min-content;
  animation: panelViewIn 0.2s ease-out;
}
@keyframes panelViewIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.panel-view {
  max-width: 100%;
}
.panel-view > h1:first-child {
  margin-top: 0;
}

.panel-content h1 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.panel-content .lead {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
  line-height: 1.5;
}

.panel-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 22px;
  margin-bottom: 20px;
}

.panel-card h2 {
  font-size: 1rem;
  margin-bottom: 14px;
  font-weight: 700;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.data-table th,
.data-table td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
}
.data-table th {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.data-table tr:last-child td {
  border-bottom: none;
}

.svc-table .svc-actions {
  white-space: nowrap;
}
.svc-table .svc-actions .btn {
  margin-right: 6px;
}
.svc-table .svc-actions .btn:last-child {
  margin-right: 0;
}
.svc-name {
  font-size: 0.86rem;
}
.svc-core-tag {
  font-size: 0.72rem;
  margin-left: 4px;
}
.svc-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
}
.svc-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  flex-shrink: 0;
}
.svc-status-dot--off {
  background: var(--danger);
}
.svc-ports {
  font-size: 0.8rem;
  max-width: 420px;
  word-break: break-word;
}

.svc-logs-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 5000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}
.svc-logs-modal--open {
  display: flex;
}
.svc-logs-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}
.svc-logs-modal__panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(920px, 100%);
  max-height: min(85vh, 720px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}
.svc-logs-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.svc-logs-modal__title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}
.svc-logs-modal__pre {
  margin: 0;
  padding: 14px 16px;
  flex: 1;
  min-height: 200px;
  overflow: auto;
  font-family: ui-monospace, "Cascadia Code", "SF Mono", Menlo, Monaco, Consolas, monospace;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #cbd5e1;
  background: #070b12;
  white-space: pre-wrap;
  word-break: break-word;
}

.panel-muted {
  color: var(--muted);
  font-size: 0.9rem;
}

.hint {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 10px;
}

.deploy-row,
.domain-add-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}
.deploy-row input,
.domain-add-row input {
  flex: 1;
  min-width: 160px;
  max-width: none;
}

.badge {
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem;
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 700;
}

.status-pill {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
}
.status-pill.connected {
  background: rgba(34, 197, 94, 0.2);
  color: #86efac;
}
.status-pill.ready {
  background: rgba(148, 163, 184, 0.15);
  color: var(--muted);
}

.domain-result-box {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 0.9rem;
}
.domain-result-box.available {
  border-color: rgba(34, 197, 94, 0.4);
  background: rgba(34, 197, 94, 0.06);
}
.domain-result-box.taken {
  color: var(--muted);
}

.settings-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.settings-tab {
  padding: 8px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--muted);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  font-family: inherit;
}
.settings-tab:hover {
  color: var(--text);
}
.settings-tab.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.settings-panel {
  display: none;
}
.settings-panel.active {
  display: block;
}

.cms-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.cms-tab {
  padding: 8px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--muted);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  font-family: inherit;
}
.cms-tab.active {
  background: #7c3aed;
  color: #fff;
  border-color: #7c3aed;
}

#cms-structured-wrap {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  background: var(--bg);
  margin-bottom: 12px;
  max-height: 65vh;
  overflow-y: auto;
}

.view-loading {
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.65s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.error-banner {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid var(--danger);
  padding: 14px 18px;
  border-radius: var(--radius);
  color: #fca5a5;
}

.toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  padding: 12px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  max-width: 360px;
  font-size: 0.9rem;
}
.toast.visible {
  opacity: 1;
}
.toast.error {
  border-color: var(--danger);
  color: #fca5a5;
}

code {
  font-size: 0.85em;
  background: var(--bg);
  padding: 2px 6px;
  border-radius: 4px;
}

/* Admin — Server monitoring */
.server-stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.server-stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
}

.server-stat-card .label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 6px;
}

.server-stat-card .value {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.server-stat-card .sub {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.35;
}

.server-charts-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.server-chart-card canvas {
  display: block;
  width: 100%;
  height: 140px;
  border-radius: 8px;
  background: var(--bg);
}

.server-chart-card h2 {
  margin-bottom: 10px;
}

.server-info-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.server-summary-list {
  list-style: none;
  font-size: 0.92rem;
  line-height: 1.7;
}

.server-summary-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 4px 0;
  border-bottom: 1px solid var(--border);
}

.server-summary-list li:last-child {
  border-bottom: none;
}

.server-summary-list .k {
  color: var(--muted);
}

@media (max-width: 900px) {
  .panel-sidebar {
    width: 100%;
    position: relative;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .panel-main {
    margin-left: 0;
  }
}

/* Admin — structured tools & CMS */
.admin-page-header {
  margin-bottom: 22px;
}
.admin-page-header h1 {
  margin-bottom: 6px;
}
.admin-page-header .lead {
  margin-bottom: 0;
}

.panel-nav-tools-hub {
  display: block;
  margin: 4px 18px 14px;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--accent-dim);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  border: 1px solid rgba(59, 130, 246, 0.35);
  transition: background 0.12s, border-color 0.12s;
}
.panel-nav-tools-hub:hover {
  background: rgba(59, 130, 246, 0.22);
  color: #fff;
  border-color: var(--accent);
}

.panel-nav-group {
  margin-bottom: 4px;
}
.panel-nav-group-label {
  padding: 10px 18px 4px 22px;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
  opacity: 0.9;
}
.panel-nav-tight a {
  padding: 7px 18px 7px 26px;
  font-size: 0.82rem;
}
.panel-nav-nested {
  font-weight: 500;
}

.admin-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.admin-hub-grid-cms {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.admin-hub-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 20px 22px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer;
  font-family: inherit;
  color: var(--text);
  transition: border-color 0.15s, background 0.15s;
}
.admin-hub-card:hover {
  border-color: var(--accent);
  background: var(--surface-hover);
}
.admin-hub-card-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
}
.admin-hub-card-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
  margin-bottom: 14px;
}
.admin-hub-card-cta {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
}

.admin-dash-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
  margin-top: 8px;
}
.admin-dash-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.15s, background 0.15s;
}
.admin-dash-card:hover {
  border-color: var(--muted);
  background: var(--surface-hover);
}
.admin-dash-card-title {
  font-weight: 700;
  font-size: 0.92rem;
}
.admin-dash-card-desc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.4;
}

.admin-tools-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
}
.admin-tools-group h2 {
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.admin-tools-group-desc {
  margin-bottom: 14px;
  font-size: 0.85rem;
  line-height: 1.45;
}
.admin-tools-linklist {
  list-style: none;
  margin: 0;
  padding: 0;
}
.admin-tools-linklist li {
  border-top: 1px solid var(--border);
}
.admin-tools-linklist li:first-child {
  border-top: none;
}
.admin-hub-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 0;
  background: none;
  border: none;
  color: var(--text);
  font-size: 0.88rem;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
  transition: color 0.12s;
}
.admin-hub-link:hover {
  color: var(--accent);
}
.admin-hub-item-badge {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  padding: 2px 8px;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.admin-placeholder-card {
  position: relative;
  padding-top: 36px;
}
.admin-placeholder-badge {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--bg);
}

.cms-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.cms-subnav-btn {
  padding: 8px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.12s, border-color 0.12s, background 0.12s;
}
.cms-subnav-btn:hover {
  color: var(--text);
  border-color: var(--muted);
}
.cms-subnav-btn.active {
  background: #7c3aed;
  color: #fff;
  border-color: #7c3aed;
}

.cms-editor-card {
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 220px);
  min-height: 320px;
}
.cms-editor-scroll {
  flex: 1;
  min-height: 0;
  margin-bottom: 14px;
}
.cms-editor-scroll #cms-structured-wrap {
  min-height: 240px;
  max-height: min(55vh, 520px);
  overflow-y: auto;
}
.cms-editor-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-shrink: 0;
  padding-top: 4px;
  border-top: 1px solid var(--border);
}
.cms-editor-actions-right {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.cms-field {
  margin-bottom: 12px;
}
.cms-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 6px;
}
.cms-input,
.cms-textarea {
  width: 100%;
  max-width: none;
  padding: 8px 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
}
.cms-textarea {
  resize: vertical;
  min-height: 56px;
}
.cms-section-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  margin-bottom: 14px;
  background: rgba(15, 23, 42, 0.5);
}
.cms-section-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.cms-mini {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 8px 0 6px;
}
.cms-item-row,
.cms-why-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 640px) {
  .cms-item-row,
  .cms-why-row {
    grid-template-columns: 1fr 1fr auto;
    align-items: start;
  }
}
.cms-plan-block {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
  margin-bottom: 12px;
}
