/* ─────────────────────────────────────────
   밥.today — Toss-inspired Stylesheet  v3
   Light, clean, friendly. Toss Blue system.
   Palette:
     Background  : #F2F4F6  (toss gray)
     Card        : #FFFFFF
     Surface     : #F7F8FA
     Border      : #EAECEF
     Primary     : #3182F6  (toss blue)
     Text Main   : #191F28
     Text Sub    : #4E5968
     Text Muted  : #8B95A1
   ───────────────────────────────────────── */

:root {
  --bg:           #F2F4F6;
  --bg-card:      #FFFFFF;
  --bg-surface:   #F7F8FA;
  --border:       #EAECEF;
  --border-soft:  #F1F3F5;

  --primary:      #3182F6;
  --primary-dark: #1B64DA;
  --primary-soft: #E8F1FE;
  --primary-glow: rgba(49,130,246,0.18);

  --text:         #191F28;
  --text-sub:     #4E5968;
  --text-muted:   #8B95A1;

  --green:        #14BE9C;
  --red:          #F04452;
  --amber:        #FF9500;

  /* meal accents */
  --breakfast:      #FF9500;   /* warm orange */
  --breakfast-soft: #FFF3E4;
  --lunch:          #3182F6;   /* toss blue */
  --lunch-soft:     #E8F1FE;
  --dinner:         #2E4C9E;   /* deep navy */
  --dinner-soft:    #EAEEF7;

  --r:            20px;
  --r-sm:         14px;
  --r-xs:         10px;
  --shadow:       0 2px 8px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.04);
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.05);
  --font: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
}

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

html {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body { min-height: 100vh; background: var(--bg); }
a { text-decoration: none; color: inherit; }
button { font-family: var(--font); }

/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(242,244,246,0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.header-inner {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  color: var(--text);
}
.logo-rice, .logo-icon {
  width: 30px; height: 30px;
  background: var(--primary);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px var(--primary-glow);
}
.logo-text { color: var(--text); }
.logo-dot  { color: var(--primary); }
.school-chip {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-sub);
  background: var(--bg-card);
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: -0.01em;
  box-shadow: var(--shadow-sm);
}

/* ══════════════════════════════════════════
   GREETING / HERO
══════════════════════════════════════════ */
.hero {
  max-width: 560px;
  margin: 0 auto;
  padding: 1.25rem 1.25rem 0.25rem;
}
.hero-greeting {
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.32;
  color: var(--text);
}
.hero-greeting .accent { color: var(--primary); }
.hero-sub {
  margin-top: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: -0.01em;
}

/* ══════════════════════════════════════════
   DATE NAV
══════════════════════════════════════════ */
.date-nav-section {
  max-width: 560px;
  margin: 0 auto;
  padding: 1rem 1.25rem 0;
}
.date-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  background: var(--bg-card);
  border-radius: var(--r);
  padding: 8px;
  box-shadow: var(--shadow-sm);
}
.date-center {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.date-display {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}
.today-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.66rem;
  font-weight: 700;
  background: var(--primary-soft);
  color: var(--primary);
  padding: 3px 9px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.nav-arrow {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--bg-surface);
  border: none;
  color: var(--text-sub);
  cursor: pointer;
  transition: all 0.16s ease;
  flex-shrink: 0;
}
.nav-arrow:hover {
  background: var(--primary-soft);
  color: var(--primary);
}
.nav-arrow:active { transform: scale(0.92); }

.date-picker-row {
  margin-top: 0.65rem;
  display: flex;
  justify-content: center;
}
.date-picker {
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  border: none;
  border-radius: 999px;
  padding: 7px 16px;
  background: var(--bg-card);
  outline: none;
  cursor: pointer;
  transition: color 0.16s;
  box-shadow: var(--shadow-sm);
  color-scheme: light;
}
.date-picker:focus { color: var(--primary); }

/* ══════════════════════════════════════════
   MEAL TABS — segmented control
══════════════════════════════════════════ */
.meals-section {
  max-width: 560px;
  margin: 1.1rem auto 0;
  padding: 0 1.25rem;
}
.tab-bar {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px;
  background: var(--bg-card);
  border-radius: 16px;
  padding: 5px;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}
.tab-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 11px 6px;
  border: none;
  background: transparent;
  border-radius: 12px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: all 0.2s ease;
  position: relative;
  letter-spacing: -0.02em;
}
.tab-icon { display: none; }
.tab-sub  { font-size: 0.66rem; font-weight: 600; opacity: 0.7; letter-spacing: -0.01em; }

.tab-btn.active { color: #fff; }
.tab-btn.active[data-tab="breakfast"] { background: var(--breakfast); }
.tab-btn.active[data-tab="lunch"]     { background: var(--lunch); }
.tab-btn.active[data-tab="dinner"]    { background: var(--dinner); }
.tab-btn.active .tab-sub { opacity: 0.9; }

.tab-btn:not(.active):hover {
  background: var(--bg-surface);
  color: var(--text-sub);
}

/* ══════════════════════════════════════════
   MEAL PANEL & CARD
══════════════════════════════════════════ */
.meal-panel { display: block; }
.meal-panel.hidden { display: none; }

.meal-card {
  background: var(--bg-card);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.meal-card::before { display: none; }

.meal-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 1.35rem 0.9rem;
}
.meal-type-pill {
  font-size: 0.8rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: -0.01em;
}
.pill-breakfast { background: var(--breakfast-soft); color: var(--breakfast); }
.pill-lunch     { background: var(--lunch-soft);     color: var(--lunch); }
.pill-dinner    { background: var(--dinner-soft);    color: var(--dinner); }

.cal-badge {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--bg-surface);
  padding: 5px 12px;
  border-radius: 999px;
}

/* ══════════════════════════════════════════
   MENU LIST
══════════════════════════════════════════ */
.menu-list { list-style: none; padding: 0.15rem 0.55rem 0.7rem; }

.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0.8rem;
  border-radius: 12px;
  transition: background 0.14s;
  gap: 0.75rem;
}
.menu-item:hover { background: var(--bg-surface); }

.menu-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  flex: 1;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

/* Allergy warning button — icon only */
.allergy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  background: var(--bg-surface);
  color: var(--text-muted);
  border: none;
  border-radius: 9px;
  cursor: pointer;
  transition: all 0.14s;
  flex-shrink: 0;
  padding: 0;
}
.allergy-btn:hover {
  background: #FDECEE;
  color: var(--red);
}
.allergy-btn:active { transform: scale(0.9); }

/* ══════════════════════════════════════════
   EMPTY STATE
══════════════════════════════════════════ */
.empty-card {
  background: var(--bg-card);
  border-radius: var(--r);
  padding: 3.5rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.empty-icon { font-size: 2.6rem; margin-bottom: 0.85rem; opacity: 0.9; }
.empty-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-sub);
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}
.empty-sub { font-size: 0.86rem; color: var(--text-muted); line-height: 1.5; }

/* ══════════════════════════════════════════
   ANIMATE IN
══════════════════════════════════════════ */
.animate-in {
  animation: slideUp 0.34s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.menu-item { animation: fadeItem 0.32s both; }
@keyframes fadeItem {
  from { opacity: 0; transform: translateX(-6px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ══════════════════════════════════════════
   ALLERGY REFERENCE SECTION
══════════════════════════════════════════ */
.allergy-section {
  max-width: 560px;
  margin: 1rem auto 0;
  padding: 0 1.25rem;
}
.allergy-ref {
  background: var(--bg-card);
  border-radius: var(--r-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.allergy-ref-summary {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 1rem 1.2rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-sub);
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: color 0.15s;
  letter-spacing: -0.01em;
}
.allergy-ref-summary::-webkit-details-marker { display: none; }
.allergy-ref-summary:hover { color: var(--primary); }
.allergy-ref[open] .allergy-ref-summary { color: var(--text); }
.allergy-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0.4rem 1.2rem 1.2rem;
}
.allergy-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--bg-surface);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-sub);
}
.allergy-chip-num {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 17px; height: 17px;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 6px;
  font-size: 0.66rem;
  font-weight: 800;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer {
  max-width: 560px;
  margin: 1.75rem auto 0;
  padding: 1.5rem 1.25rem 3rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}
.site-footer strong { color: var(--primary); font-weight: 700; }
.footer-sub { margin-top: 6px; font-size: 0.72rem; opacity: 0.8; line-height: 1.6; }

/* ══════════════════════════════════════════
   ALLERGY MODAL  (bottom sheet)
══════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: var(--bg-card);
  border-radius: 24px 24px 0 0;
  width: 100%;
  max-width: 560px;
  padding-bottom: env(safe-area-inset-bottom, 1.5rem);
  transform: translateY(100%);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  max-height: 75vh;
  overflow-y: auto;
}
.modal-overlay.open .modal-box { transform: translateY(0); }

.modal-handle {
  width: 44px; height: 5px;
  background: var(--border);
  border-radius: 999px;
  margin: 12px auto 0;
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem 0.5rem;
  position: sticky; top: 0;
  background: var(--bg-card);
}
.modal-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: -0.01em;
}
.modal-close {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border: none;
  background: var(--bg-surface);
  border-radius: 10px;
  cursor: pointer;
  color: var(--text-muted);
  transition: all 0.15s;
}
.modal-close:hover { background: var(--border); color: var(--text); }

.modal-menu-name {
  padding: 0.5rem 1.5rem 0.4rem;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
}

.modal-allergy-list { padding: 0.5rem 1.5rem 1.5rem; }

.modal-allergy-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border-soft);
  animation: fadeItem 0.22s both;
}
.modal-allergy-item:last-child { border-bottom: none; }

.modal-allergy-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}
.modal-allergy-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}
.modal-empty-text {
  padding: 1.5rem 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  text-align: center;
}

/* ══════════════════════════════════════════
   ADMIN — shared
══════════════════════════════════════════ */
.admin-page { min-height: 100vh; background: var(--bg); }

.admin-header {
  background: rgba(242,244,246,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky; top: 0; z-index: 50;
}
.admin-header-inner {
  max-width: 900px; margin: 0 auto;
  padding: 0 1.5rem; height: 60px;
  display: flex; align-items: center; justify-content: space-between;
}
.admin-badge {
  font-size: 0.62rem; font-weight: 800;
  background: var(--primary-soft); color: var(--primary);
  padding: 3px 9px; border-radius: 999px;
  margin-left: 6px; letter-spacing: 0.02em;
}
.admin-actions-top { display: flex; align-items: center; gap: 8px; }
.admin-main {
  max-width: 900px;
  margin: 0 auto;
  padding: 1.75rem 1.5rem 3rem;
}
.admin-section-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.25rem;
}
.admin-section-title { font-size: 1.4rem; font-weight: 800; color: var(--text); letter-spacing: -0.03em; }
.admin-sub-title { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 0.85rem; letter-spacing: -0.02em; }

/* Table */
.admin-table-wrap {
  background: var(--bg-card);
  border-radius: var(--r);
  overflow: hidden;
  overflow-x: auto;
  box-shadow: var(--shadow);
}
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.admin-table thead { background: var(--bg-surface); }
.admin-table th {
  padding: 0.9rem 1.1rem;
  text-align: left;
  font-size: 0.74rem; font-weight: 700;
  color: var(--text-muted);
  letter-spacing: -0.01em;
}
.admin-table td {
  padding: 0.95rem 1.1rem;
  border-bottom: 1px solid var(--border-soft);
  vertical-align: middle;
  color: var(--text-sub);
}
.admin-table tbody tr:last-child td { border-bottom: none; }
.admin-table tbody tr:hover td { background: var(--bg-surface); }
.td-date { font-weight: 700; font-size: 0.88rem; color: var(--text); }
.today-small {
  font-size: 0.6rem; font-weight: 700;
  background: var(--primary-soft); color: var(--primary);
  padding: 2px 7px; border-radius: 999px; margin-left: 6px;
}
.td-menu .menu-preview { color: var(--text-sub); }
.td-menu .menu-more { font-size: 0.75rem; font-weight: 700; color: var(--primary); margin-left: 4px; }
.td-actions { display: flex; gap: 6px; align-items: center; }
.td-empty { text-align: center; padding: 3rem; color: var(--text-muted); font-size: 0.9rem; }

.type-badge { font-size: 0.74rem; font-weight: 700; padding: 4px 11px; border-radius: 999px; }
.type-조식 { background: var(--breakfast-soft); color: var(--breakfast); }
.type-석식 { background: var(--dinner-soft); color: var(--dinner); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  font-family: var(--font); font-weight: 700;
  border-radius: var(--r-sm); border: none; cursor: pointer;
  transition: all 0.16s ease;
  text-decoration: none; line-height: 1; white-space: nowrap;
  letter-spacing: -0.01em;
}
.btn-primary {
  background: var(--primary); color: #fff;
  padding: 0.7rem 1.5rem; font-size: 0.9rem;
}
.btn-primary:hover { background: var(--primary-dark); }
.btn-primary:active { transform: scale(0.98); }

.btn-outline {
  background: var(--bg-card); color: var(--text-sub);
  box-shadow: inset 0 0 0 1px var(--border);
  padding: 0.7rem 1.4rem; font-size: 0.9rem;
}
.btn-outline:hover { color: var(--primary); box-shadow: inset 0 0 0 1px var(--primary); }

.btn-ghost {
  background: transparent; color: var(--text-muted);
  padding: 0.7rem 1.4rem; font-size: 0.9rem;
}
.btn-ghost:hover { background: var(--bg-surface); color: var(--text); }

.btn-danger {
  background: #FDECEE; color: var(--red);
  padding: 0.45rem 0.9rem; font-size: 0.78rem;
}
.btn-danger:hover { background: #FBD9DD; }

.btn-full { width: 100%; padding-top: 0.95rem; padding-bottom: 0.95rem; font-size: 1rem; }
.btn-sm   { padding: 0.5rem 1rem; font-size: 0.84rem; }
.btn-xs   { padding: 0.4rem 0.8rem; font-size: 0.76rem; border-radius: 9px; }

/* Forms */
.admin-form-card {
  background: var(--bg-card);
  border-radius: var(--r);
  padding: 1.75rem;
  max-width: 640px;
  box-shadow: var(--shadow);
}
.admin-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-label { font-size: 0.86rem; font-weight: 700; color: var(--text-sub); letter-spacing: -0.01em; }
.form-hint  { font-weight: 500; color: var(--text-muted); margin-left: 4px; font-size: 0.8rem; }
.form-input {
  font-family: var(--font); font-size: 0.95rem; font-weight: 500;
  padding: 0.85rem 1rem;
  border: none;
  box-shadow: inset 0 0 0 1px var(--border);
  border-radius: var(--r-sm);
  background: var(--bg-surface);
  color: var(--text);
  outline: none;
  transition: box-shadow 0.16s, background 0.16s;
  width: 100%;
  color-scheme: light;
}
.form-input:focus { box-shadow: inset 0 0 0 2px var(--primary); background: var(--bg-card); }
.form-select { cursor: pointer; }
.form-textarea { resize: vertical; min-height: 200px; font-size: 0.92rem; line-height: 1.8; }
.form-actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 0.5rem; }

.menu-input-example {
  background: var(--bg-surface);
  border-radius: var(--r-sm);
  padding: 0.9rem 1.1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  line-height: 2;
}
.menu-input-example code { font-family: 'Courier New', monospace; color: var(--primary); font-weight: 600; }

.allergy-ref-compact { display: flex; flex-wrap: wrap; gap: 6px; padding: 0.25rem 0; }
.allergy-chip-sm {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--bg-surface);
  border-radius: 999px; padding: 5px 10px;
  font-size: 0.72rem; font-weight: 600; color: var(--text-sub);
}

.admin-allergy-ref {
  margin-top: 1.5rem;
  background: var(--bg-card);
  border-radius: var(--r);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

/* Flash */
.flash { padding: 0.9rem 1.2rem; border-radius: var(--r-sm); margin-bottom: 1rem; font-size: 0.9rem; font-weight: 600; letter-spacing: -0.01em; }
.flash-success { background: #E7F8F4; color: var(--green); }
.flash-info    { background: var(--primary-soft); color: var(--primary); }
.flash-error   { background: #FDECEE; color: var(--red); }

.admin-error {
  padding: 0.9rem 1.2rem; background: #FDECEE;
  color: var(--red);
  border-radius: var(--r-sm); font-size: 0.9rem; font-weight: 600; margin-bottom: 0.5rem;
}
.edit-sub { font-size: 0.95rem; font-weight: 600; color: var(--text-muted); margin-left: 8px; }

/* Admin login */
.admin-login-page {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 2rem 1.25rem;
  background: var(--bg);
}
.admin-login-card {
  background: var(--bg-card);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  width: 100%; max-width: 400px;
  box-shadow: var(--shadow);
}
.admin-login-logo {
  display: flex; align-items: center; gap: 8px;
  font-size: 1.4rem; font-weight: 800;
  margin-bottom: 0.5rem; justify-content: center;
  letter-spacing: -0.03em;
}
.admin-login-title {
  font-size: 0.95rem; font-weight: 600;
  text-align: center; margin-bottom: 1.75rem;
  color: var(--text-muted);
}
.admin-back-link {
  display: block; text-align: center;
  margin-top: 1.5rem; font-size: 0.84rem; font-weight: 600;
  color: var(--text-muted); transition: color 0.16s;
}
.admin-back-link:hover { color: var(--primary); }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-greeting { font-size: 1.4rem; }
  .date-display { font-size: 0.95rem; }
  .admin-form-card { padding: 1.35rem; }
  .form-row { grid-template-columns: 1fr; }
  .admin-main { padding: 1.25rem 1rem 3rem; }
  .admin-table th, .admin-table td { padding: 0.7rem 0.8rem; }
  .modal-menu-name { font-size: 1.2rem; }
  .admin-section-title { font-size: 1.2rem; }
}
