/* ── Variables ───────────────────────────────────────────────────────────────── */
:root {
  --bg:           #f7f7f8;
  --surface:      #ffffff;
  --surface-2:    #f2f2f4;
  --border:       #e0e0e4;
  --border-dark:  #c8c8ce;
  --text:         #111114;
  --text-2:       #3a3a42;
  --text-muted:   #8a8a96;
  --brand:        #1a1a1f;
  --action:       #1b9e5a;
  --action-hover: #158149;
  --action-light: #edfaf3;
  --action-text:  #0e6037;
  --danger:       #dc2626;
  --danger-hover: #b91c1c;
  --danger-light: #fef2f2;
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.07);
  --shadow-md:    0 4px 20px rgba(0,0,0,0.12);
  --radius:       10px;
  --radius-sm:    7px;
}

/* ── Reset ───────────────────────────────────────────────────────────────────── */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Header ──────────────────────────────────────────────────────────────────── */
.app-header {
  background: var(--brand);
  padding: 0 24px;
  height: 56px;
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 100;
}
.header-logo { display: flex; align-items: center; gap: 10px; }
.header-logo img { height: 32px; width: auto; }
.header-logo span { font-size: 16px; font-weight: 700; color: #fff; letter-spacing: -0.2px; }
.header-badge {
  background: rgba(27,158,90,0.25); color: var(--action);
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.8px;
  text-transform: uppercase; padding: 2px 8px; border-radius: 4px; margin-left: 4px;
}
.header-right { display: flex; align-items: center; gap: 12px; }
.user-chip {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 100px; padding: 4px 12px 4px 4px;
}
.user-avatar {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--action); color: #fff;
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.user-chip span { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.8); }
.btn-exit {
  background: rgba(255,255,255,0.08); border: none;
  color: rgba(255,255,255,0.6); font-family: 'Outfit', sans-serif;
  font-size: 12.5px; font-weight: 500; cursor: pointer;
  padding: 6px 12px; border-radius: 100px;
  display: flex; align-items: center; gap: 5px;
  transition: background 0.14s, color 0.14s; text-decoration: none;
}
.btn-exit:hover { background: rgba(255,255,255,0.15); color: #fff; }
.btn-exit svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2.2; stroke-linecap: round; }

/* ── Layout ──────────────────────────────────────────────────────────────────── */
.app-content { max-width: 1080px; width: 100%; margin: 0 auto; padding: 28px 24px; }
.app-content-wide { max-width: 1160px; width: 100%; margin: 0 auto; padding: 28px 24px; }

.page-heading { display: flex; align-items: baseline; gap: 10px; margin-bottom: 22px; }
.page-heading-left { display: flex; align-items: baseline; gap: 10px; }
.page-heading h1 { font-size: 20px; font-weight: 700; letter-spacing: -0.4px; }
.page-heading .sub { font-size: 13px; color: var(--text-muted); font-weight: 400; }

/* ── Buttons ─────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  padding: 9px 18px; border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 500;
  cursor: pointer; border: none; transition: all 0.16s; white-space: nowrap;
  text-decoration: none;
}
.btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.3; stroke-linecap: round; stroke-linejoin: round; }
.btn-action  { background: var(--action); color: #fff; }
.btn-action:hover  { background: var(--action-hover); box-shadow: 0 4px 14px rgba(27,158,90,0.25); }
.btn-outline { background: var(--surface); color: var(--text-2); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--border-dark); background: var(--surface-2); }
.btn-danger  { background: var(--danger); color: #fff; }
.btn-danger:hover  { background: var(--danger-hover); box-shadow: 0 4px 14px rgba(220,38,38,0.22); }
.btn-ghost { background: transparent; color: var(--text-muted); border: none; padding: 6px 8px; }
.btn-ghost:hover { color: var(--text); background: var(--surface-2); }
.btn-ghost-danger { background: transparent; color: var(--text-muted); border: none; padding: 6px 8px; }
.btn-ghost-danger:hover { color: var(--danger); background: var(--danger-light); }
.btn-ghost svg, .btn-ghost-danger svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.btn-sm { padding: 6px 12px; font-size: 13px; }

/* ── Error / Info boxes ───────────────────────────────────────────────────────── */
.error-box {
  background: var(--danger-light); border: 1px solid #fca5a5;
  border-radius: var(--radius-sm); padding: 12px 16px;
  color: var(--danger); font-size: 13.5px; margin-bottom: 20px;
  display: flex; align-items: center; gap: 8px;
}
.error-box svg { width: 15px; height: 15px; flex-shrink: 0; stroke: var(--danger); fill: none; stroke-width: 2.2; stroke-linecap: round; }

/* ── Table ───────────────────────────────────────────────────────────────────── */
.table-wrap {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
}
table { width: 100%; border-collapse: collapse; }
thead { background: var(--brand); }
th {
  padding: 12px 18px; text-align: left;
  font-size: 11.5px; font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.6px; text-transform: uppercase; white-space: nowrap;
}
td { padding: 14px 18px; font-size: 14px; color: var(--text); border-bottom: 1px solid var(--border); vertical-align: middle; }
tbody tr:last-child td { border-bottom: none; }
tbody tr { transition: background 0.1s; }
tbody tr.clickable { cursor: pointer; }
tbody tr.clickable:hover { background: var(--action-light); }
tbody tr.clickable:hover .order-no { color: var(--action); }

th.sortable { cursor: pointer; user-select: none; }
th.sortable:hover { color: rgba(255,255,255,0.9); }
.sort-icon { margin-left: 5px; opacity: 0.35; font-size: 10px; vertical-align: middle; }
th.sort-asc .sort-icon, th.sort-desc .sort-icon { opacity: 1; color: #fff; }

.order-no { font-family: 'JetBrains Mono', monospace; font-size: 12.5px; font-weight: 500; color: var(--text-2); transition: color 0.1s; }
.qty-cell  { font-family: 'JetBrains Mono', monospace; font-size: 13px; text-align: right; }
.qty-green { color: #15803d !important; font-weight: 600 !important; }
.qty-red   { color: #dc2626 !important; font-weight: 600 !important; }
.empty-cell { text-align: center; padding: 52px !important; color: var(--text-muted); font-size: 14px; }
.chevron-cell { color: var(--text-muted); text-align: right; padding-right: 14px; transition: color 0.1s; }
tr.clickable:hover .chevron-cell { color: var(--action); }
.chevron-cell svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

/* ── Badges & Status ─────────────────────────────────────────────────────────── */
.badge { display: inline-flex; align-items: center; padding: 3px 10px; border-radius: 5px; font-size: 12px; font-weight: 500; font-family: 'JetBrains Mono', monospace; }
.badge-week { background: var(--surface-2); color: var(--text-2); border: 1px solid var(--border); }

.durum { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 500; }
.durum-tamamlandi { color: #16a34a !important; }
.durum-bekliyor   { color: #d97706 !important; }
.durum-diger      { color: var(--text-2) !important; }

/* ── Separators ──────────────────────────────────────────────────────────────── */
.sep-v { width: 1px; background: var(--border); align-self: stretch; }

/* ── Filter bar (siparisler) ─────────────────────────────────────────────────── */
.filter-bar {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px 22px;
  display: flex; align-items: flex-end; gap: 14px; flex-wrap: wrap;
  margin-bottom: 20px; box-shadow: var(--shadow-sm);
}
.filter-group { display: flex; flex-direction: column; gap: 5px; }
.filter-group label { font-size: 11.5px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.filter-group input[type=date] {
  width: 155px; padding: 9px 12px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif; font-size: 14px; color: var(--text);
  background: var(--surface); outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.filter-group input[type=date]:focus { border-color: var(--action); box-shadow: 0 0 0 3px rgba(27,158,90,0.13); }
.filter-sep { color: var(--text-muted); padding-bottom: 10px; font-size: 13px; }

.durum-toggle { display: flex; gap: 6px; align-items: center; }
.durum-toggle input[type=checkbox] { display: none; }
.durum-toggle label {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 6px 13px; border-radius: 100px;
  font-size: 13px; font-weight: 500;
  cursor: pointer; border: 1.5px solid var(--border);
  background: var(--surface); color: var(--text-muted);
  transition: all 0.15s; user-select: none;
}
.durum-toggle input[type=checkbox]:checked + label { border-color: transparent; color: #fff; }
.durum-toggle input#chk-bekleyen:checked   + label { background: #d97706; }
.durum-toggle input#chk-tamamlandi:checked + label { background: #16a34a; }

/* ── Detail card (siparis-detay) ─────────────────────────────────────────────── */
.back-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: none; color: var(--action);
  font-family: 'Outfit', sans-serif; font-size: 13.5px; font-weight: 500;
  cursor: pointer; margin-bottom: 18px; padding: 6px 0;
  transition: gap 0.15s; text-decoration: none;
}
.back-btn:hover { gap: 10px; }
.back-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

.detail-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  margin-bottom: 22px; box-shadow: var(--shadow-sm);
}
.detail-card-top { background: var(--brand); padding: 16px 22px; display: flex; align-items: center; gap: 12px; }
.order-label { font-family: 'JetBrains Mono', monospace; font-size: 15px; font-weight: 500; color: #fff; }
.detail-card-body { padding: 20px 22px; display: flex; flex-wrap: wrap; gap: 28px; align-items: stretch; }
.detail-meta { display: flex; flex-direction: column; gap: 3px; }
.detail-meta .lbl { font-size: 11px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.detail-meta .val { font-size: 15px; font-weight: 600; color: var(--text); }

/* ── Modal ───────────────────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.45);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.modal-box {
  background: #fff; border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3); width: 100%; max-width: 900px;
  max-height: 90vh; display: flex; flex-direction: column;
  overflow: hidden; position: relative;
}
.modal-header {
  background: #1a1a1f; padding: 16px 22px;
  display: flex; align-items: center; justify-content: space-between;
  flex-shrink: 0;
}
.modal-close {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.7); padding: 4px;
  display: flex; align-items: center; transition: color 0.15s;
}
.modal-close:hover { color: #fff; }
.modal-close svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2.2; stroke-linecap: round; }
.modal-meta {
  padding: 16px 22px; display: flex; flex-wrap: wrap; gap: 24px;
  border-bottom: 1px solid #e0e0e4; flex-shrink: 0;
  background: #fff;
}
.modal-body { overflow-y: auto; padding: 20px 22px; flex: 1; background: #fff; }
.modal-section-title { font-size: 13px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 14px; }
.modal-loading { text-align: center; padding: 40px; color: var(--text-muted); font-size: 14px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.spinner { width: 28px; height: 28px; border: 3px solid #e0e0e4; border-top-color: var(--action); border-radius: 50%; animation: spin 0.7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.modal-body .table-wrap { margin: 0; }

/* ── Cari Combobox ───────────────────────────────────────────────────────────── */
.cari-combobox { position: relative; }
.cari-combobox input[type=text] { width: 100%; }
.cari-dropdown {
  display: none; position: absolute; z-index: 200;
  top: calc(100% + 4px); right: 0; left: auto;
  width: 480px;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-sm); box-shadow: var(--shadow-md);
  max-height: 260px; overflow-y: auto;
}
.cari-dropdown.open { display: block; }
.cari-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 14px; cursor: pointer; gap: 12px;
  transition: background 0.1s;
}
.cari-item:hover { background: var(--action-light); }
.cari-item-kod { font-family: 'JetBrains Mono', monospace; font-size: 11.5px; color: var(--text-muted); white-space: nowrap; }
.cari-item-unvan { font-size: 13.5px; color: var(--text); }
.cari-loading { padding: 16px; text-align: center; color: var(--text-muted); font-size: 13px; display: flex; align-items: center; justify-content: center; gap: 8px; }

/* ── Login ───────────────────────────────────────────────────────────────────── */
.login-brand {
  width: 340px; background: var(--brand);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 48px 40px; flex-shrink: 0;
}
.brand-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 56px; }
.brand-logo img { height: 38px; width: auto; }
.brand-tagline { color: #fff; font-size: 26px; font-weight: 700; line-height: 1.25; letter-spacing: -0.5px; margin-bottom: 20px; }
.brand-tagline em { color: var(--action); font-style: normal; }
.brand-desc { color: rgba(255,255,255,0.45); font-size: 13.5px; line-height: 1.7; font-weight: 300; }
.brand-bottom { color: rgba(255,255,255,0.25); font-size: 12px; }
.login-form-side { flex: 1; display: flex; align-items: center; justify-content: center; background: var(--bg); padding: 40px 24px; }
.login-card { width: 100%; max-width: 380px; animation: fadeUp 0.35s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.login-card h2 { font-size: 22px; font-weight: 700; letter-spacing: -0.4px; margin-bottom: 6px; }
.login-card .subtitle { color: var(--text-muted); font-size: 14px; margin-bottom: 32px; }
.form-group { margin-bottom: 18px; }
.form-group label, label { display: block; font-size: 13px; font-weight: 500; color: var(--text-2); margin-bottom: 6px; }
input[type=text], input[type=password], input[type=email] {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif; font-size: 15px; color: var(--text);
  background: var(--surface); transition: border-color 0.18s, box-shadow 0.18s; outline: none;
}
input:focus { border-color: var(--action); box-shadow: 0 0 0 3px rgba(27,158,90,0.13); }
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  width: 100%; padding: 12px 22px; background: var(--action); color: #fff;
  border: none; border-radius: var(--radius-sm); font-family: 'Outfit', sans-serif;
  font-size: 15px; font-weight: 600; cursor: pointer; transition: all 0.16s; letter-spacing: 0.1px;
}
.btn-primary:hover { background: var(--action-hover); box-shadow: 0 4px 14px rgba(27,158,90,0.28); }
.btn-primary svg { width: 15px; height: 15px; stroke: #fff; fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

/* ── Admin ───────────────────────────────────────────────────────────────────── */
.toolbar { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.search-wrap { position: relative; flex: 1; min-width: 260px; max-width: 420px; }
.search-wrap svg {
  position: absolute; left: 11px; top: 50%; transform: translateY(-50%);
  width: 15px; height: 15px; stroke: var(--text-muted); fill: none;
  stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; pointer-events: none;
}
.search-input {
  width: 100%; padding: 9px 12px 9px 34px !important; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-family: 'Outfit', sans-serif;
  font-size: 14px; color: var(--text); background: var(--surface); outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.search-input:focus { border-color: var(--action); box-shadow: 0 0 0 3px rgba(27,158,90,0.13); }
.toolbar-right { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.count-badge { font-size: 12px; color: var(--text-muted); padding: 0 4px; }
tbody tr:hover { background: var(--surface-2); }
.td-email { font-family: 'JetBrains Mono', monospace; font-size: 12.5px; color: var(--text-2); }
.td-cari  { font-family: 'JetBrains Mono', monospace; font-size: 12.5px; font-weight: 500; color: var(--action); }
.td-actions { text-align: right; white-space: nowrap; }
.user-name-cell { display: flex; align-items: center; gap: 10px; }
.mini-avatar {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  background: var(--action); color: #fff; font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.mini-avatar.color-1 { background: #7c3aed; }
.mini-avatar.color-2 { background: #0891b2; }
.mini-avatar.color-3 { background: #d97706; }
.mini-avatar.color-4 { background: #be123c; }
.mini-avatar.color-5 { background: #1b9e5a; }

.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.45); align-items: center; justify-content: center;
  padding: 20px; animation: fadeOverlay 0.18s ease;
}
.modal-overlay.open { display: flex; }
@keyframes fadeOverlay { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--surface); border-radius: 14px;
  width: 100%; max-width: 520px; box-shadow: var(--shadow-md);
  animation: slideUp 0.2s ease; overflow: hidden;
}
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.modal-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px 16px; border-bottom: 1px solid var(--border); }
.modal-header h2 { font-size: 16px; font-weight: 700; letter-spacing: -0.3px; }
.modal-close {
  width: 30px; height: 30px; border-radius: 6px; background: transparent; border: none;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); transition: background 0.14s, color 0.14s;
}
.modal-close:hover { background: var(--surface-2); color: var(--text); }
.modal-close svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2.3; stroke-linecap: round; }
.modal-body { padding: 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 12px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input {
  width: 100%; padding: 10px 13px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-family: 'Outfit', sans-serif;
  font-size: 14px; color: var(--text); background: var(--surface); outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.form-group input:focus { border-color: var(--action); box-shadow: 0 0 0 3px rgba(27,158,90,0.13); }
.form-group input.mono { font-family: 'JetBrains Mono', monospace; font-size: 13px; }
.form-group input.error { border-color: var(--danger); }
.form-group input.error:focus { box-shadow: 0 0 0 3px rgba(220,38,38,0.12); }
.field-error { font-size: 11.5px; color: var(--danger); display: none; }
.field-error.show { display: block; }
.modal-footer { display: flex; align-items: center; justify-content: flex-end; gap: 10px; padding: 16px 24px 20px; border-top: 1px solid var(--border); }
.modal-delete { max-width: 400px; }
.modal-delete .modal-body { text-align: center; padding: 28px 24px; }
.delete-icon {
  width: 52px; height: 52px; border-radius: 14px; background: var(--danger-light);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.delete-icon svg { width: 24px; height: 24px; stroke: var(--danger); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.delete-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.delete-desc { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }
.delete-name { font-weight: 600; color: var(--text); }

.toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 999; display: flex; flex-direction: column; gap: 10px; }
.toast {
  display: flex; align-items: center; gap: 10px;
  background: var(--brand); color: #fff; padding: 12px 18px; border-radius: 10px;
  font-size: 13.5px; font-weight: 500; box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  animation: toastIn 0.25s ease; min-width: 240px;
}
.toast.success { border-left: 3px solid var(--action); }
.toast.error   { border-left: 3px solid var(--danger); }
.toast svg { width: 16px; height: 16px; flex-shrink: 0; stroke: currentColor; fill: none; stroke-width: 2.3; stroke-linecap: round; }
@keyframes toastIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }

/* ── Media queries ───────────────────────────────────────────────────────────── */
@media (max-width: 680px) {
  .app-content, .app-content-wide { padding: 18px 14px; }
  th, td { padding: 10px 12px; }
  .user-chip span { display: none; }
  .detail-card-body { gap: 18px; }
  .filter-group input[type=date] { width: 140px; }
  .filter-bar { gap: 10px; }
  .login-brand { width: 100%; padding: 32px 24px 28px; }
  .brand-tagline { font-size: 20px; }
  .brand-desc, .brand-bottom { display: none; }
  .login-form-side { padding: 32px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  body.login-page { flex-direction: column; }
}
