@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300;1,9..40,400&family=Playfair+Display:ital,wght@0,700;0,900;1,700;1,900&display=swap');

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --gold:          #C9A84C;
  --gold-light:    #E8C97A;
  --gold-dark:     #8B6914;
  --cream:         #FAF6EE;
  --ink:           #1A1410;
  --ink-mid:       #3D2E1A;
  --ink-soft:      #6B5A42;
  --bg-dark:       #0D0B08;
  --bg-panel:      #181410;
  --bg-card:       #221D17;
  --border:        rgba(201,168,76,0.18);
  --border-strong: rgba(201,168,76,0.40);
  --red-justice:   #C0392B;
  --red-light:     #E74C3C;
  --font-display:  'Playfair Display','Cormorant Garamond',Georgia,serif;
  --font-serif:    'Cormorant Garamond',Georgia,serif;
  --font-body:     'DM Sans',system-ui,sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg-dark); color: var(--cream); font-family: var(--font-body); font-size: 16px; line-height: 1.7; overflow-x: hidden; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }
img { max-width: 100%; display: block; }

/* ── JUSTICE BANNER ─────────────────────────────────────── */
.justice-banner {
  background: var(--red-justice); padding: 14px 2rem;
  text-align: center; font-size: 0.82rem; letter-spacing: 0.15em;
  font-weight: 600; text-transform: uppercase; color: #fff;
  display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
}
.justice-banner .hashtag { font-size: 1rem; font-weight: 700; }

/* ── NAV ────────────────────────────────────────────────── */
nav {
  position: fixed; top: 36px; left: 0; right: 0; z-index: 100;
  background: rgba(13,11,8,0.94); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 60px;
}
.justice-banner + nav { top: 44px; }
.nav-brand {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  color: var(--gold); letter-spacing: 0.02em;
  display: flex; align-items: center; gap: 10px;
}
.nav-brand .dot {
  width: 8px; height: 8px; background: var(--red-justice);
  border-radius: 50%; display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{ opacity:1; transform:scale(1); } 50%{ opacity:0.6; transform:scale(1.3); } }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(250,246,238,0.7); transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.btn-admin {
  background: var(--red-justice); color: #fff !important; padding: 6px 14px;
  border-radius: 4px; font-size: 0.78rem; letter-spacing: 0.1em;
  text-transform: uppercase; font-weight: 600; transition: background 0.2s;
}
.btn-admin:hover { background: var(--red-light) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 22px; height: 2px; background: var(--cream); display: block; }
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none; position: fixed; top: 104px; left: 0; right: 0;
    background: var(--bg-panel); border-bottom: 1px solid var(--border);
    flex-direction: column; gap: 0; padding: 1rem 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 2rem; width: 100%; }
}

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 140px 2rem 80px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,168,76,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(192,57,43,0.04) 0%, transparent 60%);
}
.hero-ornament {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 100%; height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  opacity: 0.5;
}
.hero-tagline {
  font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 12px;
}
.hero-tagline::before, .hero-tagline::after {
  content: ''; flex: 1; max-width: 60px; height: 1px; background: var(--gold); opacity: 0.5;
}
.hero h1 {
  font-family: var(--font-display); font-size: clamp(3rem,8vw,7rem);
  font-weight: 900; line-height: 1.0; color: var(--cream); margin-bottom: 0.3em;
}
.hero h1 em { color: var(--gold); font-style: italic; }
.hero-subtitle {
  font-family: var(--font-serif); font-size: clamp(1.2rem,3vw,1.8rem);
  font-weight: 300; font-style: italic; color: rgba(250,246,238,0.75);
  margin-bottom: 2.5rem; letter-spacing: 0.04em;
}
.hero-dates {
  font-size: 0.82rem; letter-spacing: 0.2em; color: rgba(250,246,238,0.45);
  text-transform: uppercase; margin-bottom: 3rem;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(250,246,238,0.35); animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn-primary {
  background: var(--gold); color: var(--ink); padding: 12px 32px;
  font-weight: 600; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 2px; transition: background 0.2s, transform 0.15s;
  border: none; cursor: pointer; display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); color: var(--ink); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--cream); padding: 12px 32px;
  font-weight: 500; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 2px; border: 1px solid var(--border-strong);
  transition: border-color 0.2s, color 0.2s, transform 0.15s; cursor: pointer; display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }
.btn-red {
  background: var(--red-justice); color: #fff; padding: 12px 32px;
  font-weight: 600; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 2px; border: none; transition: background 0.2s; cursor: pointer; display: inline-block;
}
.btn-red:hover { background: var(--red-light); }

/* ── SECTIONS ───────────────────────────────────────────── */
section { padding: 80px 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 0.72rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.75rem;
  display: flex; align-items: center; gap: 10px;
}
.section-label::before { content: ''; width: 30px; height: 1px; background: var(--gold); opacity: 0.6; }
.section-title {
  font-family: var(--font-display); font-size: clamp(2rem,5vw,3.5rem);
  font-weight: 700; line-height: 1.1; color: var(--cream); margin-bottom: 1.5rem;
}
.section-title em { color: var(--gold); font-style: italic; }
.divider { width: 60px; height: 2px; background: linear-gradient(90deg,var(--gold),transparent); margin: 1.5rem 0 2.5rem; }

/* ── FORMS ──────────────────────────────────────────────── */
.form-label {
  display: block; font-size: 0.78rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(250,246,238,0.5); margin-bottom: 6px;
}
.form-input {
  width: 100%; background: var(--bg-card); border: 1px solid var(--border);
  color: var(--cream); padding: 10px 14px; font-family: var(--font-body);
  font-size: 0.92rem; border-radius: 2px; outline: none;
  transition: border-color 0.2s;
}
.form-input:focus { border-color: var(--gold); }
.form-input::placeholder { color: rgba(250,246,238,0.25); }
textarea.form-input { resize: vertical; }

/* ── CARDS ──────────────────────────────────────────────── */
.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 2px; padding: 1.5rem;
  transition: border-color 0.2s;
}
.card:hover { border-color: var(--border-strong); }

/* ── STATS ──────────────────────────────────────────────── */
.stats-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); margin-top: 2.5rem;
}
.stat-item { background: var(--bg-panel); padding: 20px; text-align: center; }
.stat-number { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--gold); display: block; }
.stat-label { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(250,246,238,0.5); margin-top: 4px; display: block; }

/* ── CMS BODY ───────────────────────────────────────────── */
.cms-body { color: rgba(250,246,238,0.8); line-height: 1.8; }
.cms-body h2 { font-family: var(--font-display); font-size: 2rem; color: var(--cream); margin: 2rem 0 1rem; }
.cms-body h3 { font-family: var(--font-serif); font-size: 1.4rem; color: var(--cream); margin: 1.5rem 0 0.75rem; }
.cms-body p  { margin-bottom: 1.25rem; }
.cms-body ul, .cms-body ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.cms-body li { margin-bottom: 0.5rem; }
.cms-body blockquote {
  border-left: 3px solid var(--gold); padding-left: 1.5rem;
  font-family: var(--font-serif); font-size: 1.2rem; font-style: italic;
  color: rgba(250,246,238,0.75); margin: 2rem 0;
}
.cms-body a { color: var(--gold); text-decoration: underline; }
.cms-body img { border-radius: 2px; margin: 1.5rem auto; }

/* ── NOTIFICATION ───────────────────────────────────────── */
.notification {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 9999;
  background: var(--bg-card); border: 1px solid var(--border);
  padding: 14px 20px; border-radius: 2px; font-size: 0.88rem;
  color: var(--cream); max-width: 320px; display: none;
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}
.notification.show { display: block; animation: slideUp 0.3s ease; }
@keyframes slideUp { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:translateY(0)} }
.notification.gold-border { border-color: var(--gold); }

/* ── AUTH MODAL ─────────────────────────────────────────── */
.auth-modal-bg {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.85); backdrop-filter: blur(6px);
  align-items: center; justify-content: center;
}
.auth-modal-bg.show { display: flex; }
.auth-modal {
  background: var(--bg-panel); border: 1px solid var(--border);
  width: 420px; max-width: 95vw; border-radius: 2px; position: relative; overflow: hidden;
}
.auth-modal-header { padding: 1.5rem; border-bottom: 1px solid var(--border); background: var(--bg-dark); }
.auth-modal-header h3 { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 600; color: var(--cream); }
.auth-modal-header p { font-size: 0.85rem; color: rgba(250,246,238,0.5); margin-top: 0.25rem; }
.auth-modal-body { padding: 1.5rem; }
.auth-modal-close {
  position: absolute; top: 12px; right: 12px;
  background: none; border: 1px solid var(--border); color: rgba(250,246,238,0.5);
  width: 28px; height: 28px; border-radius: 2px; cursor: pointer; font-size: 1rem;
  display: flex; align-items: center; justify-content: center; transition: border-color 0.2s;
}
.auth-modal-close:hover { border-color: var(--red-justice); color: var(--red-light); }
.auth-social { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; }
.btn-social {
  display: flex; align-items: center; gap: 12px; padding: 11px 16px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 2px;
  cursor: pointer; color: var(--cream); font-size: 0.88rem; font-family: var(--font-body);
  transition: border-color 0.2s; width: 100%; text-align: left; text-decoration: none;
}
.btn-social:hover { border-color: var(--gold); color: var(--cream); }
.social-icon { width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; flex-shrink: 0; }
.google-icon { background: #fff; color: #EA4335; }
.fb-icon     { background: #1877F2; color: #fff; }
.auth-divider {
  display: flex; align-items: center; gap: 12px; margin-bottom: 1.25rem;
  font-size: 0.75rem; color: rgba(250,246,238,0.3); text-transform: uppercase; letter-spacing: 0.1em;
}
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.auth-tabs-row { display: flex; margin-bottom: 1rem; border: 1px solid var(--border); border-radius: 2px; overflow: hidden; }
.auth-tab-btn {
  flex: 1; padding: 9px; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em;
  background: transparent; border: none; color: rgba(250,246,238,0.5); cursor: pointer;
  font-family: var(--font-body); transition: background 0.15s, color 0.15s;
}
.auth-tab-btn.active { background: var(--gold); color: var(--ink); font-weight: 600; }
.auth-tab-pane { display: none; }
.auth-tab-pane.active { display: block; }

/* ── FOOTER ─────────────────────────────────────────────── */
footer { background: var(--bg-dark); border-top: 1px solid var(--border); padding: 3rem 2rem 2rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-brand h3 { font-family: var(--font-display); font-size: 1.4rem; color: var(--gold); margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.88rem; color: rgba(250,246,238,0.5); line-height: 1.6; }
.footer-col h4 { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(250,246,238,0.45); margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { font-size: 0.88rem; color: rgba(250,246,238,0.6); transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; display: flex; justify-content: space-between; font-size: 0.78rem; color: rgba(250,246,238,0.3); flex-wrap: wrap; gap: 0.5rem; }

/* ── ADMIN SHELL ─────────────────────────────────────────── */
.admin-shell { display: flex; min-height: 100vh; background: var(--bg-dark); }
.admin-sidebar {
  width: 220px; min-height: 100vh; background: var(--bg-panel);
  border-right: 1px solid var(--border); display: flex; flex-direction: column;
  position: fixed; top: 0; left: 0; bottom: 0; overflow-y: auto; z-index: 50;
}
.admin-brand { padding: 1.25rem 1rem; border-bottom: 1px solid var(--border); display: flex; flex-direction: column; gap: 4px; }
.admin-nav { display: flex; flex-direction: column; padding: 0.75rem 0; }
.admin-nav a {
  padding: 10px 16px; font-size: 0.83rem; color: rgba(250,246,238,0.6);
  transition: background 0.15s, color 0.15s; display: flex; align-items: center; gap: 8px;
}
.admin-nav a:hover { background: rgba(201,168,76,0.06); color: var(--gold); }
.admin-nav a.active { background: rgba(201,168,76,0.1); color: var(--gold); border-right: 2px solid var(--gold); }
.badge-count { background: var(--red-justice); color: #fff; font-size: 0.65rem; padding: 1px 6px; border-radius: 10px; margin-left: auto; }
.admin-main { margin-left: 220px; flex: 1; display: flex; flex-direction: column; min-height: 100vh; }
.admin-topbar { padding: 1rem 1.5rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; background: var(--bg-panel); }
.admin-page-title { font-family: var(--font-serif); font-size: 1.4rem; color: var(--cream); font-weight: 600; }
.admin-content { padding: 1.5rem; flex: 1; }
.admin-cards { display: grid; grid-template-columns: repeat(auto-fill,minmax(160px,1fr)); gap: 1rem; margin-bottom: 1.5rem; }
.admin-card { background: var(--bg-card); border: 1px solid var(--border); padding: 1.25rem; border-radius: 2px; text-align: center; }
.admin-card .num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--gold); display: block; }
.admin-card .lbl { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(250,246,238,0.45); }
.admin-section-title { font-family: var(--font-serif); font-size: 1.1rem; color: var(--cream); margin-bottom: 1rem; font-weight: 600; }
.admin-toolbar { display: flex; gap: 8px; margin-bottom: 1rem; flex-wrap: wrap; align-items: center; }
.admin-toolbar select,
.admin-toolbar input[type="text"] {
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--cream); padding: 7px 12px; font-size: 0.82rem;
  font-family: var(--font-body); border-radius: 2px; outline: none;
}
.admin-toolbar select:focus, .admin-toolbar input:focus { border-color: var(--gold); }
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.admin-table th { text-align: left; padding: 10px 12px; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(250,246,238,0.45); border-bottom: 1px solid var(--border); }
.admin-table td { padding: 10px 12px; border-bottom: 1px solid rgba(201,168,76,0.07); color: rgba(250,246,238,0.75); vertical-align: middle; }
.admin-table tr:hover td { background: rgba(201,168,76,0.03); }
.admin-actions { display: flex; gap: 6px; flex-wrap: wrap; }
.badge { display: inline-block; padding: 3px 8px; border-radius: 2px; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; background: var(--bg-dark); border: 1px solid var(--border); color: rgba(250,246,238,0.5); }
.badge-pending  { background: rgba(234,170,0,0.12);  color: #EAA800; border-color: rgba(234,170,0,0.25); }
.badge-approved { background: rgba(39,174,96,0.12);  color: #27AE60; border-color: rgba(39,174,96,0.25); }
.badge-admin    { background: rgba(192,57,43,0.12);  color: #E74C3C; border-color: rgba(192,57,43,0.25); }
.btn-xs {
  padding: 4px 10px; font-size: 0.7rem; letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: 2px; border: 1px solid var(--border); background: transparent;
  color: rgba(250,246,238,0.6); cursor: pointer; font-family: var(--font-body); transition: border-color 0.15s, color 0.15s;
}
.btn-xs:hover         { border-color: var(--gold);        color: var(--gold); }
.btn-xs.danger:hover  { border-color: var(--red-justice); color: var(--red-light); }
.btn-xs.success:hover { border-color: #27AE60;            color: #2ecc71; }
.editor-toolbar { display: flex; gap: 8px; padding: 10px; background: var(--bg-dark); border: 1px solid var(--border); border-bottom: none; flex-wrap: wrap; }
.editor-area { background: var(--bg-dark); border: 1px solid var(--border); color: var(--cream); padding: 1rem; font-family: 'Courier New',monospace; font-size: 0.85rem; width: 100%; min-height: 300px; resize: vertical; line-height: 1.6; outline: none; }
.editor-area:focus { border-color: var(--gold); }
.alert { padding: 12px 16px; border-radius: 2px; margin-bottom: 1rem; font-size: 0.88rem; }
.alert-success { background: rgba(39,174,96,0.12); border: 1px solid rgba(39,174,96,0.3); color: #2ecc71; }
.alert-danger  { background: rgba(192,57,43,0.12); border: 1px solid rgba(192,57,43,0.3); color: var(--red-light); }
.log-entry { padding: 8px 12px; border-bottom: 1px solid var(--border); font-size: 0.8rem; display: flex; justify-content: space-between; gap: 1rem; }
.log-time   { color: rgba(250,246,238,0.3); font-size: 0.72rem; white-space: nowrap; }
.log-action { color: rgba(250,246,238,0.7); }
.log-action .user { color: var(--gold); }
.media-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(140px,1fr)); gap: 1rem; }
.media-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 2px; overflow: hidden; }
.media-thumb { aspect-ratio: 1; background: var(--bg-dark); display: flex; align-items: center; justify-content: center; font-size: 2rem; }
.media-thumb img { width: 100%; height: 100%; object-fit: cover; }
.media-info { padding: 8px; }
.media-name { font-size: 0.72rem; color: rgba(250,246,238,0.6); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.media-size { font-size: 0.68rem; color: rgba(250,246,238,0.35); margin-top: 2px; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .admin-sidebar { width: 200px; }
  .admin-main   { margin-left: 200px; }
}
@media (max-width: 640px) {
  .footer-top { grid-template-columns: 1fr; }
  section { padding: 60px 1.25rem; }
  .admin-sidebar { display: none; }
  .admin-main { margin-left: 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ── ADMIN SIDEBAR OVERRIDE ─────────────────────────────── */
body.admin-shell {
  display: flex !important;
  flex-direction: row !important;
  min-height: 100vh;
  padding: 0 !important;
  overflow-x: hidden;
}
.admin-sidebar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 220px !important;
  height: 100vh !important;
  background: #181410 !important;
  border-right: 1px solid rgba(201,168,76,0.18) !important;
  display: flex !important;
  flex-direction: column !important;
  z-index: 999 !important;
  overflow-y: auto !important;
}
.admin-main {
  margin-left: 220px !important;
  flex: 1 !important;
  width: calc(100% - 220px) !important;
  min-height: 100vh !important;
  display: flex !important;
  flex-direction: column !important;
}
.admin-topbar {
  position: sticky !important;
  top: 0 !important;
  z-index: 100 !important;
  background: #181410 !important;
  padding: 1rem 1.5rem !important;
  border-bottom: 1px solid rgba(201,168,76,0.18) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}
.admin-content {
  padding: 1.5rem !important;
  flex: 1 !important;
}
.admin-nav {
  display: flex !important;
  flex-direction: column !important;
  padding: 0.75rem 0 !important;
}
.admin-nav a {
  display: flex !important;
  align-items: center !important;
  padding: 10px 16px !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}
/* Remove the floating nav-links from admin pages */
body.admin-shell nav,
body.admin-shell .justice-banner {
  display: none !important;
}
