/* ═══════════════════════════════════════════════════
   KRIX Admin Panel — Dark Professional Theme
   ═══════════════════════════════════════════════════ */

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

:root {
  --bg:        #0f172a;
  --surface:   #1e293b;
  --surface2:  #263045;
  --border:    #334155;
  --text:      #e2e8f0;
  --text-muted:#94a3b8;
  --accent:    #3b82f6;
  --accent2:   #2563eb;
  --success:   #10b981;
  --warning:   #f59e0b;
  --danger:    #ef4444;
  --radius:    10px;
  --sidebar-w: 230px;
}

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  height: 100vh;
  overflow: hidden;
}

/* ─── Login ────────────────────────────────────────── */

#admin-login {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: radial-gradient(ellipse at 60% 40%, #1e3a5f 0%, var(--bg) 70%);
}

.login-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 44px;
  width: 400px;
  box-shadow: 0 25px 60px rgba(0,0,0,.5);
}

.login-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 4px;
}
.login-logo .logo-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 0 24px rgba(245,197,24,.45);
}
.login-logo .logo-icon img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.login-logo h1 { font-size: 24px; font-weight: 700; }
.login-logo h1 span { color: var(--accent); }
.login-sub { color: var(--text-muted); font-size: 13px; margin-bottom: 28px; }

.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; color: var(--text-muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .05em; }
.form-group input {
  width: 100%;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  color: var(--text);
  font-size: 14px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-group input::placeholder { color: var(--text-muted); opacity: 1; }
.form-group input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(59,130,246,.2);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, transform .1s;
}
.btn-primary:hover { background: var(--accent2); }
.btn-primary:active { transform: scale(.98); }
.btn-full { width: 100%; margin-top: 4px; }

.setup-hint { margin-top: 18px; color: var(--text-muted); font-size: 12px; text-align: center; }
.setup-hint code { background: var(--bg); padding: 1px 5px; border-radius: 4px; font-size: 11px; }

/* ─── Alert ────────────────────────────────────────── */

.admin-alert {
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 13px;
  margin-bottom: 16px;
}
.admin-alert-danger  { background: rgba(239,68,68,.12); border: 1px solid rgba(239,68,68,.3); color: #fca5a5; }
.admin-alert-success { background: rgba(16,185,129,.12); border: 1px solid rgba(16,185,129,.3); color: #6ee7b7; }

/* ─── App Layout ───────────────────────────────────── */

#admin-app {
  display: grid;
  grid-template-columns: var(--sidebar-w) 1fr;
  height: 100vh;
  overflow: hidden;
}

/* ─── Sidebar ──────────────────────────────────────── */

.sidebar {
  background: var(--surface);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
}

.sidebar-brand {
  padding: 18px 20px;
  font-size: 18px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -.02em;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.sidebar-brand .sb-logo {
  width: 32px; height: 32px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(245,197,24,.4);
}
.sidebar-brand .sb-logo img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.sidebar-nav { flex: 1; padding: 12px 0; overflow-y: auto; }

.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 0;
  transition: background .15s, color .15s;
  position: relative;
}
.nav-item:hover { background: var(--surface2); color: var(--text); }
.nav-item.active { background: rgba(59,130,246,.15); color: var(--accent); }
.nav-item.active::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent);
  border-radius: 0 3px 3px 0;
}
.nav-icon { font-size: 16px; width: 20px; text-align: center; }
.nav-badge {
  margin-left: auto;
  background: var(--warning);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  padding: 1px 7px;
  border-radius: 20px;
  min-width: 22px;
  text-align: center;
}

.sidebar-footer {
  padding: 14px 16px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.admin-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.admin-info { flex: 1; min-width: 0; }
.admin-email-text { font-size: 12px; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.admin-role-badge { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; }
.btn-logout {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: color .2s, background .2s;
}
.btn-logout:hover { color: var(--danger); background: rgba(239,68,68,.1); }

/* ─── Main Content ─────────────────────────────────── */

.admin-main {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100vh;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  height: 58px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  flex-shrink: 0;
}
.topbar-title { font-size: 16px; font-weight: 700; }
.topbar-right { display: flex; align-items: center; gap: 8px; }

.btn-icon {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-muted);
  padding: 6px 12px;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .2s, border-color .2s;
}
.btn-icon:hover { color: var(--text); border-color: var(--accent); }

.admin-section {
  flex: 1;
  overflow-y: auto;
  padding: 24px 28px;
}

/* ─── Stats Grid ───────────────────────────────────── */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: border-color .2s;
}
.stat-card:hover { border-color: var(--accent); }
.stat-card.stat-warning { border-left: 3px solid var(--warning); }
.stat-card.stat-success { border-left: 3px solid var(--success); }
.stat-card.stat-danger  { border-left: 3px solid var(--danger);  }

.stat-icon { font-size: 28px; }
.stat-value { font-size: 26px; font-weight: 800; color: var(--text); }
.stat-label { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ─── Dashboard Bottom ─────────────────────────────── */

.dashboard-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.dash-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.dash-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.dash-panel-header h3 { font-size: 14px; font-weight: 600; }

.kyc-mini-list, .tx-mini-list { display: flex; flex-direction: column; gap: 8px; }

.kyc-mini-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: var(--surface2);
  border-radius: 8px;
  cursor: pointer;
  transition: background .15s;
}
.kyc-mini-item:hover { background: var(--border); }
.kyc-mini-email { font-size: 13px; }
.kyc-mini-sub { font-size: 11px; color: var(--text-muted); }

.tx-mini-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: var(--surface2);
  border-radius: 8px;
  font-size: 12px;
}
.tx-mini-addr { color: var(--text-muted); font-family: monospace; font-size: 11px; }
.tx-mini-amount { color: var(--success); font-weight: 700; }

/* ─── Section Headers ──────────────────────────────── */

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}
.section-header h2 { font-size: 20px; font-weight: 700; }
.section-filters { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.section-filters input, .section-filters select {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 12px;
  color: var(--text);
  font-size: 13px;
  outline: none;
}
.section-filters input:focus, .section-filters select:focus { border-color: var(--accent); }

/* ─── Buttons ──────────────────────────────────────── */

.btn-sm {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-muted);
  padding: 7px 14px;
  font-size: 13px;
  cursor: pointer;
  transition: color .15s, border-color .15s;
}
.btn-sm:hover { color: var(--text); border-color: var(--accent); }

.btn-success {
  background: rgba(16,185,129,.15);
  border: 1px solid rgba(16,185,129,.4);
  color: var(--success);
  border-radius: 8px;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}
.btn-success:hover { background: rgba(16,185,129,.25); }

.btn-danger {
  background: rgba(239,68,68,.12);
  border: 1px solid rgba(239,68,68,.35);
  color: var(--danger);
  border-radius: 8px;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}
.btn-danger:hover { background: rgba(239,68,68,.22); }

/* ─── Table ────────────────────────────────────────── */

.table-wrapper {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: auto;
  margin-bottom: 16px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.admin-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.admin-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(51,65,85,.5);
  color: var(--text);
  vertical-align: middle;
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tbody tr:hover td { background: rgba(255,255,255,.02); }

.mono { font-family: monospace; font-size: 12px; }
.truncate { max-width: 160px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; display: block; }

/* ─── Badges / Pills ───────────────────────────────── */

.badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}
.badge-pending  { background: rgba(148,163,184,.15); color: var(--text-muted); }
.badge-submitted{ background: rgba(245,158,11,.15);  color: var(--warning); }
.badge-approved { background: rgba(16,185,129,.15);  color: var(--success); }
.badge-rejected { background: rgba(239,68,68,.15);   color: var(--danger); }
.badge-suspended{ background: rgba(239,68,68,.15);   color: var(--danger); }
.badge-active   { background: rgba(16,185,129,.12);  color: var(--success); }

/* ─── KYC Card List ────────────────────────────────── */

.card-list { display: flex; flex-direction: column; gap: 12px; }

.kyc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: border-color .2s, transform .1s;
}
.kyc-card:hover { border-color: var(--accent); transform: translateX(2px); }

.kyc-card-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.kyc-card-info { flex: 1; }
.kyc-card-email { font-size: 14px; font-weight: 600; }
.kyc-card-sub { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.kyc-card-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.kyc-card-time { font-size: 11px; color: var(--text-muted); }

/* ─── Pagination ───────────────────────────────────── */

.pagination {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  padding: 12px 0;
}
.page-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-muted);
  padding: 6px 14px;
  font-size: 13px;
  cursor: pointer;
}
.page-btn:hover, .page-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.page-btn:disabled { opacity: .4; cursor: default; }

/* ─── Events Panel ─────────────────────────────────── */

.events-panel {
  position: fixed;
  right: -360px;
  top: 0;
  width: 360px;
  height: 100vh;
  background: var(--surface);
  border-left: 1px solid var(--border);
  z-index: 100;
  display: flex;
  flex-direction: column;
  transition: right .3s cubic-bezier(.4,0,.2,1);
  box-shadow: -8px 0 32px rgba(0,0,0,.3);
}
.events-panel.open { right: 0; }

.events-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  font-weight: 600;
  flex-shrink: 0;
}
.events-panel-header button {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 16px;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 4px;
}
.events-panel-header button:hover { color: var(--text); background: var(--surface2); }

.events-feed {
  flex: 1;
  overflow-y: auto;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.event-item {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 12px;
  animation: slideIn .3s ease;
}
.event-item.ev-warning { border-left: 3px solid var(--warning); }
.event-item.ev-success { border-left: 3px solid var(--success); }
.event-item.ev-danger  { border-left: 3px solid var(--danger);  }
.event-item.ev-info    { border-left: 3px solid var(--accent);  }

.event-kind { font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 3px; }
.event-payload { color: var(--text-muted); word-break: break-all; }
.event-time { color: var(--text-muted); font-size: 10px; margin-top: 4px; }

@keyframes slideIn {
  from { opacity: 0; transform: translateX(16px); }
  to   { opacity: 1; transform: translateX(0); }
}

.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  animation: pulse 1.6s infinite;
  margin-right: 2px;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}

/* ─── Modal ────────────────────────────────────────── */

#user-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(2px);
}
.modal-box {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  width: 860px;
  max-width: 96vw;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 40px 80px rgba(0,0,0,.6);
  animation: modalIn .2s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(.96) translateY(-8px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--surface);
  z-index: 1;
}
.modal-header h2 { font-size: 18px; font-weight: 700; }
.modal-close {
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-radius: 8px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close:hover { color: var(--text); }

.modal-body { padding: 24px; }

.modal-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.info-group { margin-bottom: 14px; }
.info-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.info-value { font-size: 14px; color: var(--text); }
.info-value.mono { font-family: monospace; font-size: 12px; word-break: break-all; }

.kyc-actions, .suspend-actions {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  margin-top: 12px;
}
.kyc-actions-label { font-size: 11px; font-weight: 700; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; }
.kyc-actions textarea, .suspend-actions textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 12px;
  color: var(--text);
  font-size: 13px;
  resize: none;
  outline: none;
  margin-bottom: 10px;
}
.kyc-btn-row { display: flex; gap: 8px; }

/* ─── Docs ─────────────────────────────────────────── */

.docs-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.docs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.doc-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.doc-card-header {
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.doc-preview { width: 100%; max-height: 240px; object-fit: contain; background: #000; display: block; }
.doc-pdf-link {
  display: block;
  padding: 20px;
  text-align: center;
  color: var(--accent);
  font-size: 13px;
  text-decoration: none;
}
.doc-pdf-link:hover { text-decoration: underline; }

/* ─── Modal Audit ──────────────────────────────────── */

.modal-audit-list { display: flex; flex-direction: column; gap: 6px; }

.modal-audit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: var(--surface2);
  border-radius: 8px;
  font-size: 12px;
}
.modal-audit-action { font-weight: 700; color: var(--text); flex: 1; }
.modal-audit-admin  { color: var(--text-muted); }
.modal-audit-time   { color: var(--text-muted); white-space: nowrap; }

/* ─── Empty / Loading ──────────────────────────────── */

.empty-state {
  text-align: center;
  color: var(--text-muted);
  padding: 32px 20px;
  font-size: 14px;
}

/* ─── Scrollbar ────────────────────────────────────── */

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #475569; }

/* ─── Additional Modals (wallet, admin-create) ─────── */

#wallet-detail-modal, #wallet-modal, #admin-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── Wallet detail tabs ───────────────────────────────── */

.wdm-tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-muted);
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: color .15s, border-color .15s;
  margin-bottom: -1px;
}
.wdm-tab:hover { color: var(--text); }
.wdm-tab.active { color: var(--accent); border-bottom-color: var(--accent); }

/* ─── Admin Card (inline panels) ───────────────────── */

.admin-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.admin-card-header {
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 700;
  border-bottom: 1px solid var(--border);
  background: var(--surface2);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.admin-card-body { padding: 16px 18px; }

/* ─── Button variants ───────────────────────────────── */

.btn-primary-sm {
  background: var(--accent);
  border: none;
  border-radius: 8px;
  color: #fff;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s;
}
.btn-primary-sm:hover { background: var(--accent2); }

.btn-danger-sm {
  background: rgba(239,68,68,.12);
  border: 1px solid rgba(239,68,68,.3);
  border-radius: 8px;
  color: var(--danger);
  padding: 6px 12px;
  font-size: 12px;
  cursor: pointer;
  transition: background .15s;
}
.btn-danger-sm:hover { background: rgba(239,68,68,.22); }

/* ─── Responsive ───────────────────────────────────── */

@media (max-width: 1100px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 800px) {
  #admin-app { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .dashboard-bottom { grid-template-columns: 1fr; }
  .modal-two-col { grid-template-columns: 1fr; }
  .docs-grid { grid-template-columns: 1fr; }
}
