/* ═══════════════════════════════════════════════════════
   YOUNG NOLA — ADMIN STYLE SYSTEM
   Dark sidebar (#1e293b) · Purple accent (#7c3aed)
   Clean cards · Professional restaurant HR
═══════════════════════════════════════════════════════ */

/* ── Reset & Tokens ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --sidebar-w: 240px;
  --sidebar-bg: #1e293b;
  --sidebar-hover: rgba(255,255,255,.07);
  --sidebar-active-bg: rgba(124,58,237,.18);
  --sidebar-active-bar: #7c3aed;
  --sidebar-text: rgba(255,255,255,.62);
  --sidebar-text-active: #c4b5fd;
  --primary: #7c3aed;
  --primary-hover: #6d28d9;
  --primary-light: rgba(124,58,237,.1);
  --bg: #f8fafc;
  --card: #ffffff;
  --border: #e2e8f0;
  --border2: #f1f5f9;
  --text: #1e293b;
  --text-muted: #64748b;
  --text-faint: #94a3b8;
  --success: #22c55e;
  --success-bg: rgba(34,197,94,.1);
  --danger: #ef4444;
  --danger-bg: rgba(239,68,68,.1);
  --warning: #f59e0b;
  --warning-bg: rgba(245,158,11,.1);
  --info: #3b82f6;
  --info-bg: rgba(59,130,246,.1);
  --gold: #C9A84C;
  --radius: 10px;
  --shadow: 0 1px 4px rgba(0,0,0,.06), 0 4px 12px rgba(0,0,0,.04);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.12);
}

html, body {
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--primary); text-decoration: none; }

/* ── Layout ──────────────────────────────────────────── */
.layout {
  display: flex;
  min-height: 100vh;
}

/* ── Sidebar ─────────────────────────────────────────── */
.sidebar {
  width: var(--sidebar-w);
  background: var(--sidebar-bg);
  position: fixed;
  top: 0; left: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  z-index: 200;
  overflow-y: auto;
}

.sidebar-logo {
  padding: 22px 20px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  flex-shrink: 0;
}
.sidebar-logo img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: contain;
}
.sidebar-logo-text {
  font-size: .95rem;
  font-weight: 700;
  color: #f1f5f9;
  letter-spacing: .01em;
  line-height: 1.2;
}
.sidebar-logo-sub {
  font-size: .68rem;
  color: rgba(255,255,255,.3);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.sidebar-section {
  padding: 12px 0 4px;
}
.sidebar-section-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
  padding: 0 20px 8px;
}

.sidebar-nav {
  list-style: none;
  flex: 1;
  padding: 8px 0;
}
.sidebar-nav li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  color: var(--sidebar-text);
  font-size: .875rem;
  font-weight: 500;
  border-left: 3px solid transparent;
  transition: background .15s, color .15s;
  position: relative;
}
.sidebar-nav li a:hover {
  background: var(--sidebar-hover);
  color: rgba(255,255,255,.9);
}
.sidebar-nav li a.active {
  background: var(--sidebar-active-bg);
  color: var(--sidebar-text-active);
  border-left-color: var(--sidebar-active-bar);
}
.sidebar-nav li a svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  opacity: .75;
}
.sidebar-nav li a.active svg { opacity: 1; }

.sidebar-footer {
  padding: 12px 12px 20px;
  border-top: 1px solid rgba(255,255,255,.07);
  flex-shrink: 0;
}
.sidebar-user {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 8px;
  border-radius: 8px;
  margin-bottom: 6px;
}
.sidebar-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.sidebar-user-name {
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  line-height: 1.2;
}
.sidebar-user-role {
  font-size: .7rem;
  color: rgba(255,255,255,.35);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.sidebar-logout {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 8px;
  border-radius: 8px;
  color: rgba(255,255,255,.4);
  font-size: .82rem;
  transition: background .15s, color .15s;
}
.sidebar-logout:hover {
  background: rgba(239,68,68,.12);
  color: #fca5a5;
}

/* ── Main Content ────────────────────────────────────── */
.main-content {
  margin-left: var(--sidebar-w);
  flex: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-header {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  padding: 18px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.page-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  flex: 1;
}
.page-title span {
  color: var(--text-muted);
  font-weight: 400;
  font-size: .9rem;
  margin-left: 8px;
}

.page-body {
  padding: 24px 28px;
  flex: 1;
}

/* ── Cards ───────────────────────────────────────────── */
.card {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.card-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.card-title {
  font-size: .9rem;
  font-weight: 700;
  color: var(--text);
}
.card-body {
  padding: 20px;
}

/* Stat cards */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.stat-card {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stat-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.stat-value {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  letter-spacing: -.02em;
}
.stat-label {
  font-size: .72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 600;
}

/* ── Grid helpers ────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }

/* ── Tables ──────────────────────────────────────────── */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow); }
table { width: 100%; border-collapse: collapse; background: var(--card); }
thead th {
  background: #f8fafc;
  padding: 11px 16px;
  text-align: left;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
tbody td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--border2);
  font-size: .875rem;
  color: var(--text);
  vertical-align: middle;
}
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover td { background: #f8fafc; }
tfoot td {
  padding: 12px 16px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--text);
  background: #f8fafc;
  border-top: 2px solid var(--border);
}

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background .15s, transform .1s, box-shadow .15s;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-hover); box-shadow: 0 4px 12px rgba(124,58,237,.25); }
.btn-secondary { background: #f1f5f9; color: var(--text); border: 1px solid var(--border); }
.btn-secondary:hover { background: #e2e8f0; }
.btn-danger { background: var(--danger-bg); color: var(--danger); border: 1px solid rgba(239,68,68,.2); }
.btn-danger:hover { background: var(--danger); color: #fff; }
.btn-ghost { background: none; color: var(--text-muted); border: 1px solid var(--border); }
.btn-ghost:hover { background: #f1f5f9; color: var(--text); }
.btn-sm { padding: 6px 12px; font-size: .78rem; }
.btn-icon { padding: 8px; border-radius: 8px; }

/* ── Badges ──────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 9px;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .03em;
  white-space: nowrap;
}
.badge-green  { background: var(--success-bg); color: #15803d; }
.badge-red    { background: var(--danger-bg);  color: #b91c1c; }
.badge-yellow { background: var(--warning-bg); color: #92400e; }
.badge-blue   { background: var(--info-bg);    color: #1d4ed8; }
.badge-gray   { background: #f1f5f9; color: var(--text-muted); }
.badge-purple { background: var(--primary-light); color: var(--primary); }

/* Employment type colours */
.badge-full_time  { background: rgba(59,130,246,.1); color: #1d4ed8; }
.badge-part_time  { background: rgba(124,58,237,.1); color: #6d28d9; }
.badge-zero_hours { background: rgba(245,158,11,.1); color: #92400e; }

/* ── Forms ───────────────────────────────────────────── */
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.form-control {
  width: 100%;
  padding: 9px 12px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: .9rem;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  font-family: inherit;
}
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(124,58,237,.1);
}
.form-control[readonly] {
  background: #f8fafc;
  cursor: default;
}
textarea.form-control { resize: vertical; min-height: 80px; }
select.form-control { cursor: pointer; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }

.form-hint {
  font-size: .75rem;
  color: var(--text-faint);
  margin-top: 4px;
}

/* ── Modals / Overlays ───────────────────────────────── */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,.5);
  backdrop-filter: blur(4px);
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.overlay.active { display: flex; }

.modal {
  background: var(--card);
  border-radius: 14px;
  width: min(480px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}
.modal-lg { width: min(680px, 100%); }
.modal-header {
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.modal-title { font-size: 1rem; font-weight: 700; color: var(--text); }
.modal-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 1.3rem;
  line-height: 1;
  padding: 4px;
  border-radius: 6px;
  transition: background .15s;
}
.modal-close:hover { background: #f1f5f9; color: var(--text); }
.modal-body { padding: 20px 24px; flex: 1; }
.modal-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-shrink: 0;
}

/* ── Tabs ────────────────────────────────────────────── */
.tabs {
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 0;
  overflow-x: auto;
  background: var(--card);
  padding: 0 4px;
}
.tabs [data-tab-btn] {
  padding: 13px 18px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color .15s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.tabs [data-tab-btn]:hover { color: var(--text); }
.tabs [data-tab-btn].active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  font-weight: 600;
}
[data-tab-panel] { display: none; }
[data-tab-panel].active { display: block; }

/* ── Search bar ──────────────────────────────────────── */
.search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--card);
  flex-wrap: wrap;
}
.search-input-wrap {
  position: relative;
  flex: 1;
  min-width: 200px;
}
.search-input-wrap svg {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-faint);
  pointer-events: none;
}
.search-input {
  width: 100%;
  padding: 8px 12px 8px 34px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: .875rem;
  color: var(--text);
  background: #f8fafc;
  outline: none;
  transition: border-color .15s;
}
.search-input:focus {
  border-color: var(--primary);
  background: #fff;
}

/* ── Filter pills ────────────────────────────────────── */
.filter-pills { display: flex; gap: 6px; flex-wrap: wrap; }
.filter-pill {
  padding: 5px 12px;
  border-radius: 20px;
  font-size: .78rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  background: #f8fafc;
  color: var(--text-muted);
  cursor: pointer;
  transition: all .15s;
}
.filter-pill:hover { border-color: var(--primary); color: var(--primary); }
.filter-pill.active { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ── Toast ───────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  padding: 11px 20px;
  border-radius: 10px;
  font-size: .875rem;
  font-weight: 600;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity .22s, transform .22s;
  white-space: nowrap;
  max-width: 90vw;
  text-align: center;
  box-shadow: 0 6px 24px rgba(0,0,0,.15);
}
.toast--show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast--success { background: #1e293b; color: #fff; }
.toast--error   { background: #dc2626; color: #fff; }
.toast--warning { background: #d97706; color: #fff; }

/* ── Loading / Empty ─────────────────────────────────── */
.loading-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}
.spinner {
  display: inline-block;
  width: 32px; height: 32px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin .7s linear infinite;
  margin-bottom: 12px;
}
@keyframes spin { to { transform: rotate(360deg); } }

.empty-state {
  text-align: center;
  padding: 60px 20px;
}
.empty-state-icon { font-size: 2.5rem; margin-bottom: 12px; }
.empty-state-title { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.empty-state-sub { font-size: .875rem; color: var(--text-muted); }

/* ── Employee avatar / colour dot ────────────────────── */
.emp-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.colour-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

/* ── Status row (clock status) ───────────────────────── */
.status-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.status-dot--active {
  background: var(--success);
  box-shadow: 0 0 0 0 rgba(34,197,94,.4);
  animation: pulse 1.8s ease-out infinite;
}
.status-dot--done  { background: var(--text-faint); }
.status-dot--none  { background: var(--border); }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,.45); }
  70%  { box-shadow: 0 0 0 7px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

/* ── Section headings ────────────────────────────────── */
.section-title {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

/* ── Divider ─────────────────────────────────────────── */
.divider { height: 1px; background: var(--border); margin: 20px 0; }

/* ── Login page ──────────────────────────────────────── */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1208 50%, #0d0d0d 100%);
  background-size: 200% 200%;
  animation: bgShift 8s ease infinite;
  padding: 20px;
}
@keyframes bgShift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

.login-card {
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(201,168,76,.22);
  border-radius: 18px;
  padding: 44px 40px;
  width: min(400px, 100%);
  text-align: center;
}
.login-logo { width: 80px; margin-bottom: 20px; }
.login-title { color: #C9A84C; font-size: .95rem; font-weight: 400; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 28px; }
.login-field { margin-bottom: 14px; text-align: left; }
.login-field label { display: block; font-size: .72rem; color: rgba(201,168,76,.7); margin-bottom: 6px; letter-spacing: .05em; text-transform: uppercase; }
.login-field input {
  width: 100%; padding: 11px 14px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(201,168,76,.25); border-radius: 9px;
  color: #fff; font-size: .9rem; outline: none; transition: .2s; font-family: inherit;
}
.login-field input:focus { border-color: #C9A84C; background: rgba(201,168,76,.08); }
.login-btn {
  width: 100%; padding: 12px; margin-top: 8px;
  background: linear-gradient(135deg, #C9A84C, #F0D98A);
  border: none; border-radius: 9px; color: #0d0d0d;
  font-size: .95rem; font-weight: 700; letter-spacing: .04em; cursor: pointer; transition: .2s; font-family: inherit;
}
.login-btn:hover { opacity: .9; transform: translateY(-1px); }
.login-error { color: #f87171; font-size: .82rem; margin-top: 10px; min-height: 18px; }

/* ── Colour swatches (employee form) ─────────────────── */
.colour-swatches { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 6px; }
.colour-swatch {
  width: 26px; height: 26px; border-radius: 50%;
  border: 3px solid transparent; cursor: pointer; transition: .15s;
}
.colour-swatch.selected,
.colour-swatch:hover { border-color: #1e293b; transform: scale(1.15); }

/* ── Alert banners ───────────────────────────────────── */
.alert {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: .875rem;
  border: 1px solid;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.alert-warning { background: var(--warning-bg); border-color: rgba(245,158,11,.25); color: #92400e; }
.alert-danger  { background: var(--danger-bg);  border-color: rgba(239,68,68,.25);  color: #b91c1c; }
.alert-info    { background: var(--info-bg);    border-color: rgba(59,130,246,.25); color: #1d4ed8; }

/* ── Calendar (attendance) ───────────────────────────── */
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-day-header {
  font-size: .68rem;
  font-weight: 700;
  text-align: center;
  color: var(--text-muted);
  padding: 6px 0;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.cal-day {
  aspect-ratio: 1;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 600;
  cursor: default;
  border: 1px solid transparent;
  transition: .15s;
  position: relative;
}
.cal-day--empty { background: transparent; }
.cal-day--today { border-color: var(--primary); color: var(--primary); }
.cal-day--present { background: var(--success-bg); color: #166534; }
.cal-day--absent  { background: var(--danger-bg);  color: #991b1b; }
.cal-day--late    { background: var(--warning-bg); color: #78350f; }
.cal-day--holiday { background: var(--info-bg);    color: #1e40af; }
.cal-day--day_off { background: #f8fafc; color: var(--text-faint); }
.cal-day--no_shift { background: #f8fafc; color: var(--text-faint); }
.cal-day-num { font-size: .82rem; }
.cal-day-dot { width: 5px; height: 5px; border-radius: 50%; margin-top: 2px; background: currentColor; opacity: .5; }

/* ── Mobile responsive ───────────────────────────────── */
@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
    transition: transform .25s;
  }
  .sidebar.open { transform: translateX(0); }
  .main-content { margin-left: 0; }

  .stats-row { grid-template-columns: 1fr 1fr; }
  .form-row, .form-row-3 { grid-template-columns: 1fr; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .page-body { padding: 16px; }
  .page-header { padding: 14px 16px; }

  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    border: none;
    background: #f1f5f9;
    border-radius: 8px;
    cursor: pointer;
    color: var(--text);
  }
  .sidebar-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.4);
    z-index: 190;
    display: none;
  }
  .sidebar-overlay.active { display: block; }
}
@media (min-width: 769px) {
  .mobile-menu-btn { display: none; }
}
@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr; }
}
