:root {
  /* JCI Brand colors */
  --jci-navy: #3A67B1;
  --jci-navy-dark: #2A4F8C;
  --jci-navy-light: #7B9BD4;
  --jci-navy-ultralight: #ECF1FA;
  --jci-aqua: #0097D7;
  --jci-gold: #EDBE38;
  --jci-gold-dark: #C9A02E;
  --jci-gold-light: #FAEBB4;
  --jci-seafoam: #56BDA3;
  /* Backwards-compat aliases */
  --jci-blue: var(--jci-navy);
  --jci-blue-dark: var(--jci-navy-dark);
  --jci-blue-light: var(--jci-navy-light);
  --jci-blue-ultralight: var(--jci-navy-ultralight);
  --jci-accent: var(--jci-gold);
  --jci-accent-dark: var(--jci-gold-dark);
  /* Neutrals (tuned to JCI typography colors) */
  --jci-text: #0A0F29;        /* Off black for headings */
  --jci-text-soft: #414042;   /* 90% black for body */
  --gray-50: #F7F8FB;
  --gray-100: #EFF2F7;
  --gray-200: #E2E6EE;
  --gray-300: #CBD2DD;
  --gray-400: #94A0B2;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: var(--jci-text);
  --green: #56BDA3;
  --green-dark: #3FA38A;
  --green-light: #DDF1EA;
  --red: #DC2626;
  --red-light: #FEE2E2;
  --amber: #EDBE38;
  --amber-light: #FAEBB4;
  --shadow-sm: 0 1px 2px rgba(10,15,41,0.04);
  --shadow-md: 0 4px 14px rgba(10,15,41,0.07);
  --shadow-lg: 0 12px 32px rgba(10,15,41,0.12);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Plus Jakarta Sans', 'Readex Pro', -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--jci-text-soft); background: var(--gray-50);
  line-height: 1.5; min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 { color: var(--jci-text); font-weight: 700; }
.header {
  background: white;
  color: var(--jci-text);
  padding: 1rem 0;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--gray-200);
  position: sticky; top: 0; z-index: 100;
}
.header-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.logo { display: flex; align-items: center; gap: 0.85rem; font-weight: 700; font-size: 1.05rem; letter-spacing: -0.01em; color: var(--jci-text); text-decoration: none; }
.logo-img { height: 38px; width: auto; display: block; }
.logo-mark {
  background: var(--jci-navy); color: white; width: 38px; height: 38px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-weight: 800;
  font-size: 0.95rem; letter-spacing: -0.03em;
}
.logo-text { line-height: 1.2; color: var(--jci-text); }
.logo-text small { display: block; font-weight: 500; font-size: 0.78rem; color: var(--jci-navy); opacity: 0.85; }
.user-info { display: flex; align-items: center; gap: 0.9rem; font-size: 0.88rem; color: var(--jci-text-soft); }
.user-info-text { text-align: right; }
.user-info-text strong { display: block; font-weight: 700; color: var(--jci-text); }
.user-info-text small { color: var(--jci-text-soft); opacity: 0.85; }
.logout-btn {
  background: transparent; border: 1.5px solid var(--jci-navy);
  color: var(--jci-navy); padding: 0.4rem 0.95rem; border-radius: 100px; font-size: 0.82rem; font-weight: 600;
  cursor: pointer; transition: all 0.15s; font-family: inherit;
}
.logout-btn:hover { background: var(--jci-navy); color: white; }

.container { max-width: 1100px; margin: 0 auto; padding: 2rem 1.5rem 4rem; }

.view { display: none; }
.view.active { display: block; animation: fadeIn 0.25s ease-out; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

.login-wrap {
  min-height: calc(100vh - 100px); display: flex; align-items: center; justify-content: center; padding: 2rem 1rem;
}
.login-card {
  background: white; border-radius: 14px; box-shadow: var(--shadow-lg);
  padding: 3rem 2.5rem; max-width: 460px; width: 100%; text-align: center;
}
.login-card h1 { font-size: 1.75rem; color: var(--jci-text); margin-bottom: 0.5rem; letter-spacing: -0.02em; font-weight: 800; }
.login-card .subtitle { color: var(--gray-500); margin-bottom: 2rem; font-size: 0.95rem; }
.login-form { text-align: left; }
.login-form label { display: block; font-weight: 600; font-size: 0.85rem; color: var(--gray-700); margin-bottom: 0.4rem; }
.login-form input {
  width: 100%; padding: 0.75rem 0.9rem; border: 2px solid var(--gray-200);
  border-radius: 8px; font-size: 1rem;
  font-family: 'SF Mono', Menlo, Consolas, monospace; letter-spacing: 0.05em; transition: border 0.15s;
}
.login-form input:focus { outline: none; border-color: var(--jci-blue); }
.login-form .help-text { font-size: 0.8rem; color: var(--gray-500); margin-top: 0.5rem; }
.login-error {
  background: var(--red-light); color: var(--red); padding: 0.65rem 0.9rem;
  border-radius: 6px; font-size: 0.85rem; margin-top: 1rem; display: none;
}
.login-error.show { display: block; }

.btn {
  display: inline-block; padding: 0.75rem 1.5rem; border-radius: 100px;
  font-size: 0.95rem; font-weight: 600; border: none; cursor: pointer;
  transition: all 0.15s; font-family: inherit; text-decoration: none;
  letter-spacing: 0.01em;
}
.btn-primary { background: var(--jci-navy); color: white; }
.btn-primary:hover { background: var(--jci-navy-dark); transform: translateY(-1px); box-shadow: 0 6px 14px rgba(58,103,177,0.28); }
.btn-primary:disabled { background: var(--gray-300); cursor: not-allowed; transform: none; box-shadow: none; }
.btn-secondary { background: white; color: var(--jci-navy); border: 2px solid var(--jci-navy); padding: calc(0.75rem - 2px) calc(1.5rem - 2px); }
.btn-secondary:hover { background: var(--jci-navy-ultralight); }
.btn-ghost { background: transparent; color: var(--gray-600); padding: 0.5rem 0.95rem; }
.btn-ghost:hover { color: var(--jci-navy); background: var(--jci-navy-ultralight); }
.btn-success { background: var(--jci-seafoam); color: white; }
.btn-success:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 6px 14px rgba(86,189,163,0.32); }
.btn-danger { background: var(--red); color: white; }
.btn-danger:hover { background: #B91C1C; }
.btn-accent { background: var(--jci-gold); color: var(--jci-text); }
.btn-accent:hover { background: var(--jci-gold-dark); color: white; }
.btn-block { width: 100%; }
.btn-sm { padding: 0.4rem 0.85rem; font-size: 0.85rem; }

.page-title { margin-bottom: 1.5rem; }
.page-title h2 { font-size: 1.8rem; color: var(--jci-text); letter-spacing: -0.02em; margin-bottom: 0.35rem; font-weight: 800; }
.page-title .subtitle { color: var(--jci-text-soft); font-size: 0.95rem; }
.breadcrumb { font-size: 0.85rem; color: var(--gray-500); margin-bottom: 1rem; }
.breadcrumb a { color: var(--jci-navy); text-decoration: none; cursor: pointer; font-weight: 500; }
.breadcrumb a:hover { text-decoration: underline; }

.cat-grid { display: grid; gap: 1.25rem; }
.cat-card {
  background: white; border-radius: 12px; border: 1px solid var(--gray-200);
  padding: 1.5rem; cursor: pointer; transition: all 0.2s; position: relative; overflow: hidden;
}
.cat-card:hover { border-color: var(--jci-navy); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.cat-card-accent { position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--jci-navy); }
.cat-card-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; margin-bottom: 0.75rem; }
.cat-card-num { font-size: 0.78rem; color: var(--jci-navy); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.cat-card-title { font-size: 1.2rem; color: var(--jci-text); margin-top: 0.2rem; font-weight: 700; letter-spacing: -0.01em; }
.cat-card-meta { display: flex; gap: 1.25rem; color: var(--gray-500); font-size: 0.85rem; margin-top: 0.75rem; flex-wrap: wrap; }
.cat-card-meta span { display: flex; align-items: center; gap: 0.4rem; }
.cat-card-progress { margin-top: 1rem; display: flex; align-items: center; gap: 0.75rem; }
.progress-bar { flex: 1; height: 6px; background: var(--gray-100); border-radius: 3px; overflow: hidden; }
.progress-bar-fill { height: 100%; background: var(--jci-aqua); border-radius: 3px; transition: width 0.3s ease; }
.progress-bar-fill.complete { background: var(--jci-seafoam); }
.progress-text { font-size: 0.82rem; font-weight: 600; color: var(--gray-600); min-width: 50px; text-align: right; }

.status-pill { display: inline-block; padding: 0.25rem 0.65rem; border-radius: 100px;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
}
.status-todo { background: var(--gray-100); color: var(--gray-600); }
.status-progress { background: var(--jci-gold-light); color: #7A5C0A; }
.status-done { background: var(--green-light); color: var(--green-dark); }
.status-submitted { background: var(--jci-navy-ultralight); color: var(--jci-navy-dark); }

.cat-header {
  background: white; border-radius: 12px; padding: 2rem;
  margin-bottom: 1.5rem; border-left: 5px solid var(--jci-navy);
}
.cat-header h2 { font-size: 1.75rem; color: var(--jci-text); margin-bottom: 0.4rem; letter-spacing: -0.02em; font-weight: 800; }
.cat-header .donor { color: var(--gray-500); font-size: 0.9rem; font-style: italic; margin-bottom: 1rem; }
.criteria-list { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1rem; }
.criterion-chip {
  background: var(--jci-navy-ultralight); color: var(--jci-navy-dark);
  padding: 0.35rem 0.75rem; border-radius: 6px; font-size: 0.8rem; font-weight: 500;
}
.criterion-chip strong { font-weight: 700; }
.threshold-warning {
  background: var(--jci-gold-light);
  border-left: 4px solid var(--jci-gold); padding: 0.9rem 1.1rem;
  border-radius: 8px; margin-top: 1rem; font-size: 0.9rem; color: #6B4E0A;
}
.threshold-warning strong { color: #4A3505; }

.dossier-list { display: grid; gap: 1rem; }
.dossier-card {
  background: white; border-radius: 10px; border: 1px solid var(--gray-200);
  padding: 1.25rem 1.5rem; cursor: pointer; transition: all 0.15s;
  display: flex; flex-direction: column; gap: 0.85rem;
}
.dossier-card:hover { border-color: var(--jci-navy); box-shadow: var(--shadow-sm); }
.dossier-card-main {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.dossier-card-info h3 { font-size: 1.1rem; color: var(--jci-text); font-weight: 700; letter-spacing: -0.01em; }
.dossier-card-info .afdeling { color: var(--gray-500); font-size: 0.85rem; margin-top: 0.2rem; }
.dossier-card-status { display: flex; align-items: center; gap: 0.85rem; flex-shrink: 0; }
.dossier-score { font-size: 1.4rem; font-weight: 700; color: var(--jci-navy); font-variant-numeric: tabular-nums; }
.dossier-score .score-max { color: var(--gray-400); font-weight: 500; font-size: 0.95rem; }

.dossier-files-row {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  padding-top: 0.6rem; border-top: 1px dashed var(--gray-200);
}
.dossier-files-empty {
  color: var(--gray-400); font-size: 0.82rem; font-style: italic;
  border-top: 1px dashed var(--gray-200); padding-top: 0.6rem;
}
.dossier-file {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--jci-navy-ultralight); color: var(--jci-navy-dark);
  padding: 0.4rem 0.75rem; border-radius: 6px;
  font-size: 0.85rem; font-weight: 500; text-decoration: none;
  border: 1px solid transparent; transition: all 0.15s;
}
.dossier-file:hover {
  background: white; border-color: var(--jci-navy);
  box-shadow: 0 2px 6px rgba(58,103,177,0.18);
}
.dossier-file-size {
  color: var(--gray-500); font-weight: 400; font-size: 0.78rem;
}

.form-wrap { background: white; border-radius: 12px; border: 1px solid var(--gray-200); overflow: hidden; }
.form-header {
  background: linear-gradient(135deg, var(--jci-navy) 0%, var(--jci-navy-dark) 100%);
  color: white; padding: 2rem;
}
.form-header .cat-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.9; margin-bottom: 0.4rem; }
.form-header h2 { font-size: 1.7rem; letter-spacing: -0.02em; margin-bottom: 0.25rem; color: white; font-weight: 800; }
.form-header .afdeling { opacity: 0.9; font-size: 1rem; }
.form-body { padding: 2rem; }
.form-section { margin-bottom: 2rem; }
.form-section-title {
  font-size: 1.05rem; font-weight: 700; color: var(--gray-800);
  margin-bottom: 1rem; padding-bottom: 0.6rem; border-bottom: 2px solid var(--gray-100);
  letter-spacing: -0.01em; display: flex; justify-content: space-between; align-items: center;
}
.form-section-title .section-points { font-weight: 500; color: var(--gray-500); font-size: 0.85rem; }
.criterion-row { margin-bottom: 1.5rem; }
.criterion-label { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.5rem; }
.criterion-label-text { font-weight: 600; color: var(--gray-700); font-size: 0.95rem; }
.criterion-input-wrap { display: flex; align-items: center; gap: 0.5rem; }
.criterion-input {
  width: 80px; padding: 0.55rem 0.65rem; border: 2px solid var(--gray-200);
  border-radius: 6px; font-size: 1rem; font-weight: 600; text-align: center;
  color: var(--gray-900); font-variant-numeric: tabular-nums; transition: all 0.15s;
}
.criterion-input:focus { outline: none; border-color: var(--jci-navy); background: var(--jci-navy-ultralight); }
.criterion-input.invalid { border-color: var(--red); background: var(--red-light); }
.criterion-max { color: var(--gray-500); font-size: 0.9rem; font-weight: 500; }
.criterion-error { color: var(--red); font-size: 0.78rem; margin-top: 0.3rem; display: none; }
.criterion-error.show { display: block; }

.feedback-field { margin-bottom: 1.5rem; }
.feedback-field label {
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; color: var(--gray-800); margin-bottom: 0.5rem; font-size: 0.95rem;
}
.feedback-field label .required-tag {
  background: var(--red); color: white; padding: 0.12rem 0.5rem;
  border-radius: 100px; font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.feedback-field .field-hint { font-size: 0.83rem; color: var(--gray-500); margin-bottom: 0.5rem; line-height: 1.45; }
.feedback-field textarea {
  width: 100%; padding: 0.75rem 0.9rem; border: 2px solid var(--gray-200);
  border-radius: 8px; font-size: 0.95rem; font-family: inherit; line-height: 1.5;
  resize: vertical; min-height: 90px; transition: border 0.15s;
}
.feedback-field textarea:focus { outline: none; border-color: var(--jci-navy); }
.feedback-field textarea.invalid { border-color: var(--red); background: #FEF6F6; }
.word-counter { text-align: right; font-size: 0.78rem; color: var(--gray-500); margin-top: 0.3rem; }
.word-counter.met { color: var(--green-dark); }
.feedback-field.best { border-left: 4px solid var(--jci-seafoam); padding-left: 1rem; }
.feedback-field.tips { border-left: 4px solid var(--jci-gold); padding-left: 1rem; }

.total-section {
  background: var(--jci-navy-ultralight); border-radius: 10px;
  padding: 1.5rem; margin-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
}
.total-label { font-size: 0.95rem; color: var(--jci-navy-dark); font-weight: 600; }
.total-value {
  font-size: 2.25rem; font-weight: 800; color: var(--jci-navy);
  letter-spacing: -0.02em; font-variant-numeric: tabular-nums;
}
.total-value .total-max { color: var(--jci-navy-light); font-weight: 600; font-size: 1.4rem; }
.total-section.progress-complete { background: var(--green-light); }
.total-section.progress-complete .total-label,
.total-section.progress-complete .total-value { color: var(--green-dark); }
.total-section.progress-complete .total-value .total-max { color: var(--jci-seafoam); }

.form-footer {
  background: var(--gray-50); padding: 1.25rem 2rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  border-top: 1px solid var(--gray-200);
}
.save-status { font-size: 0.85rem; color: var(--gray-500); display: flex; align-items: center; gap: 0.4rem; }
.save-status.saved { color: var(--green); }
.save-status.error { color: var(--red); }
.save-status .save-dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; }

.modal-overlay {
  position: fixed; inset: 0; background: rgba(15, 23, 42, 0.6);
  display: none; align-items: center; justify-content: center; z-index: 1000; padding: 1rem;
}
.modal-overlay.show { display: flex; animation: fadeIn 0.2s; }
.modal {
  background: white; border-radius: 12px; max-width: 500px; width: 100%;
  padding: 2rem; box-shadow: var(--shadow-lg);
}
.modal h3 { font-size: 1.3rem; margin-bottom: 0.5rem; color: var(--gray-900); letter-spacing: -0.01em; }
.modal p, .modal #modalBody { color: var(--gray-600); margin-bottom: 1.5rem; }
.modal-actions { display: flex; gap: 0.75rem; justify-content: flex-end; }

.success-card {
  background: white; border-radius: 14px; padding: 3.5rem 2.5rem;
  text-align: center; box-shadow: var(--shadow-md); max-width: 500px; margin: 3rem auto;
}
.success-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--green-light); color: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem; font-size: 2.5rem;
}
.success-card h2 { font-size: 1.6rem; color: var(--jci-text); margin-bottom: 0.5rem; letter-spacing: -0.02em; font-weight: 800; }
.success-card p { color: var(--jci-text-soft); margin-bottom: 2rem; }

/* ADMIN STYLES */
.admin-body { background: var(--gray-100); }
.admin-nav {
  background: white; border-bottom: 1px solid var(--gray-200);
  padding: 0; box-shadow: var(--shadow-sm);
}
.admin-nav-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.admin-nav .logo { padding: 1rem 0; margin-right: 2rem; }
.admin-nav a.nav-link {
  padding: 1rem 1rem; color: var(--gray-600); text-decoration: none;
  font-weight: 500; font-size: 0.92rem; border-bottom: 3px solid transparent;
  transition: all 0.15s;
}
.admin-nav a.nav-link:hover { color: var(--jci-navy); }
.admin-nav a.nav-link.active { color: var(--jci-navy); border-bottom-color: var(--jci-navy); }
.admin-nav-user {
  margin-left: auto; color: var(--gray-500); font-size: 0.85rem;
  display: flex; align-items: center; gap: 1rem;
}

.admin-container { max-width: 1400px; margin: 0 auto; padding: 2rem 1.5rem; }
.admin-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 2rem; gap: 1rem; flex-wrap: wrap; }
.admin-header h1 { font-size: 1.7rem; color: var(--jci-text); letter-spacing: -0.02em; font-weight: 800; }
.admin-header .subtitle { color: var(--gray-500); font-size: 0.95rem; margin-top: 0.25rem; }
.admin-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem; margin-bottom: 2rem;
}
.stat-card {
  background: white; border-radius: 10px; padding: 1.25rem;
  border: 1px solid var(--gray-200); box-shadow: var(--shadow-sm);
}
.stat-card-label { font-size: 0.78rem; text-transform: uppercase; color: var(--gray-500); letter-spacing: 0.05em; font-weight: 600; }
.stat-card-value { font-size: 2rem; font-weight: 800; color: var(--jci-navy); margin-top: 0.3rem; font-variant-numeric: tabular-nums; }
.stat-card-sub { font-size: 0.82rem; color: var(--gray-500); margin-top: 0.2rem; }

.admin-table-wrap {
  background: white; border-radius: 10px; overflow: hidden;
  border: 1px solid var(--gray-200); box-shadow: var(--shadow-sm);
}
table.admin-table {
  width: 100%; border-collapse: collapse;
}
table.admin-table th {
  background: var(--gray-50); padding: 0.75rem 1rem; text-align: left;
  font-size: 0.82rem; font-weight: 700; color: var(--gray-700);
  text-transform: uppercase; letter-spacing: 0.04em;
  border-bottom: 1px solid var(--gray-200);
}
table.admin-table td {
  padding: 0.85rem 1rem; border-bottom: 1px solid var(--gray-100);
  font-size: 0.92rem; color: var(--gray-700); vertical-align: middle;
}
table.admin-table tr:last-child td { border-bottom: none; }
table.admin-table tr:hover { background: var(--gray-50); }
table.admin-table .num { text-align: right; font-variant-numeric: tabular-nums; }

.filter-bar {
  background: white; padding: 1rem 1.5rem; border-radius: 10px;
  border: 1px solid var(--gray-200); margin-bottom: 1.5rem;
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
.filter-bar label { font-size: 0.85rem; color: var(--gray-600); font-weight: 600; margin-right: 0.4rem; }
.filter-bar select, .filter-bar input {
  padding: 0.45rem 0.7rem; border: 1px solid var(--gray-300); border-radius: 6px;
  font-size: 0.9rem; font-family: inherit; background: white;
}

.alert {
  padding: 0.85rem 1.1rem; border-radius: 8px; margin-bottom: 1rem; font-size: 0.92rem;
}
.alert-success { background: var(--green-light); color: var(--green-dark); border-left: 4px solid var(--jci-seafoam); }
.alert-error { background: var(--red-light); color: #991B1B; border-left: 4px solid var(--red); }
.alert-info { background: var(--jci-navy-ultralight); color: var(--jci-navy-dark); border-left: 4px solid var(--jci-navy); }
.alert-warning { background: var(--jci-gold-light); color: #6B4E0A; border-left: 4px solid var(--jci-gold); }

@media (max-width: 640px) {
  .header-inner { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .user-info { width: 100%; justify-content: space-between; }
  .container { padding: 1.25rem 1rem 3rem; }
  .form-body, .form-header, .form-footer { padding: 1.25rem; }
  .form-footer { flex-direction: column; align-items: stretch; }
  .form-footer .btn { width: 100%; }
  .criterion-label { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .total-value { font-size: 1.8rem; }
  .cat-header { padding: 1.25rem; }
  .cat-header h2 { font-size: 1.35rem; }
  .admin-nav-inner { flex-wrap: wrap; }
  .admin-nav .logo { margin-right: 1rem; }
  .admin-container { padding: 1.25rem 1rem; }
}
