  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }

  :root {
    /* ── LIGHT THEME (default) — white readable cards ── */
    --black: #1b2430;        /* primary TEXT (dark on light) */
    --white: #ffffff;        /* on-colour text / pure light */
    --card: #ffffff;         /* card / panel surface */
    --card-2: #f4f6fa;       /* raised / striped surface */
    --ink: #1b2533;          /* dark chips / code blocks */
    --bg: #e9edf2;           /* page background (off-white) */
    --cream: #f4f6fa;        /* secondary surface */
    --sand-light: #eef2f7;   /* subtle tint surface */
    --olive: #2f6d7a;        /* primary accent (teal) */
    --olive-hover: #3a8090;
    --olive-light: #5f93a0;
    --sand: #c79a4a;         /* warm gold accent */
    --red: #b04a4a;
    --red-light: #c25a5a;
    --green: #2f8a72;        /* teal-green for success/banner */
    --green-light: #3aa589;
    --amber: #b08a3a;
    --border: #d8dee6;
    --border-strong: #bcc4cf;
    --text-muted: #5d6573;
    --shadow-sm: 0 1px 3px rgba(20,30,50,0.08), 0 1px 2px rgba(20,30,50,0.06);
    --shadow-md: 0 4px 12px rgba(20,30,50,0.10), 0 2px 4px rgba(20,30,50,0.06);
    --shadow-lg: 0 12px 32px rgba(20,30,50,0.14), 0 4px 8px rgba(20,30,50,0.08);
    --radius: 8px;
    --radius-sm: 5px;
    --font-display: 'Inter', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;
  }

  /* ── DARK THEME override ── */
  html.dark {
    --black: #e8ecf3;
    --white: #f4f6fa;
    --card: #1e2735;
    --card-2: #243044;
    --ink: #0c111a;
    --bg: #11161f;
    --cream: #1a212d;
    --sand-light: #2a3344;
    --sand: #d9b88a;
    --border: #2e3a4c;
    --border-strong: #3c4a60;
    --text-muted: #97a2b4;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.35), 0 1px 2px rgba(0,0,0,0.3);
    --shadow-md: 0 6px 16px rgba(0,0,0,0.45), 0 2px 6px rgba(0,0,0,0.35);
    --shadow-lg: 0 16px 40px rgba(0,0,0,0.55), 0 6px 12px rgba(0,0,0,0.4);
  }

  body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--black);
    min-height: 100vh;
    font-size: 14px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
  }

  /* ── HEADER ── */
  .site-header {
    background: linear-gradient(135deg, #1a2433 0%, #243349 100%);
    color: var(--white);
    padding: 0;
    border-bottom: 3px solid var(--sand);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: none;
    margin: 0;
    padding: 14px 28px;
    display: flex;
    align-items: center;
    gap: 14px;
  }
  #notifBell {
    position: relative; margin-left: auto;
    background: transparent; border: none; cursor: pointer;
    font-size: 18px; line-height: 1; padding: 4px;
    filter: grayscale(0.2);
  }
  #notifBell.hidden { display: none; }
  .notif-badge {
    position: absolute; top: -4px; right: -6px;
    background: #c84444; color: #fff;
    font-size: 10px; font-weight: 800; font-family: var(--font-body);
    min-width: 17px; height: 17px; border-radius: 999px;
    display: flex; align-items: center; justify-content: center;
    padding: 0 4px; box-shadow: 0 0 0 2px rgba(0,0,0,0.25);
  }
  .notif-badge.hidden { display: none; }
  #notifBell.has-new { animation: bellpulse 1.6s ease-in-out infinite; }
  @keyframes bellpulse { 0%,100%{transform:scale(1);} 50%{transform:scale(1.15);} }

  /* Notification dropdown */
  .notif-panel {
    position: fixed; top: 62px; right: 18px; z-index: 900;
    width: 320px; max-width: calc(100vw - 24px);
    background: var(--card); color: var(--black);
    border: 1px solid var(--border); border-radius: 12px;
    box-shadow: var(--shadow-lg); overflow: hidden;
  }
  .notif-panel.hidden { display: none; }
  .notif-panel-head {
    padding: 12px 16px; font-weight: 700; font-size: 13px;
    background: var(--accent, var(--olive)); color: #fff; letter-spacing: 0.3px;
  }
  .notif-item {
    display: flex; gap: 10px; align-items: flex-start;
    padding: 11px 16px; border-bottom: 1px solid var(--border);
  }
  .notif-item:last-of-type { border-bottom: none; }
  .notif-item.is-new { background: var(--sand-light); }
  .notif-ico { font-size: 16px; line-height: 1.3; }
  .notif-body { flex: 1; min-width: 0; }
  .notif-title { font-size: 13px; font-weight: 600; color: var(--black); }
  .notif-meta { font-size: 11.5px; color: var(--text-muted); }
  .notif-empty { padding: 18px 16px; font-size: 13px; color: var(--text-muted); }
  .notif-panel-foot {
    width: 100%; border: none; cursor: pointer;
    padding: 11px; font-size: 12.5px; font-weight: 700; letter-spacing: 0.3px;
    background: var(--ink); color: #fff; font-family: var(--font-body);
  }

  /* Modal */
  .modal-overlay {
    position: fixed; inset: 0; z-index: 1000;
    background: rgba(10,16,26,0.66); backdrop-filter: blur(3px);
    display: flex; align-items: center; justify-content: center; padding: 20px;
  }
  .modal-overlay.hidden { display: none; }
  .modal-card {
    background: var(--card); color: var(--black);
    border-radius: 16px; padding: 32px 28px; max-width: 380px; width: 100%;
    text-align: center; box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
  }
  .modal-icon { font-size: 44px; line-height: 1; margin-bottom: 10px; }
  .modal-card h2 { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 8px; color: var(--black); }
  .modal-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; margin-bottom: 18px; }
  .modal-code {
    font-family: var(--font-mono); font-size: 24px; font-weight: 700; letter-spacing: 3px;
    background: var(--sand-light); border: 1.5px dashed var(--border-strong);
    color: var(--olive); border-radius: 10px; padding: 14px; margin-bottom: 18px;
    user-select: all;
  }

  #demoBadge {
    margin-left: auto;
    font-size: 10px; font-weight: 700; letter-spacing: 0.6px;
    color: #e8c98a;
    background: rgba(201,138,51,0.18);
    border: 1px solid rgba(201,138,51,0.4);
    padding: 4px 9px; border-radius: 999px;
  }
  #demoBadge.hidden { display: none; }
  #themeToggle {
    margin-left: 16px;
    display: flex; align-items: center; gap: 6px;
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.55);
    padding: 6px 8px;
    border-radius: 999px;
    font-size: 11px; font-weight: 500; letter-spacing: 0.3px;
    font-family: var(--font-body);
    cursor: pointer;
    transition: color 0.15s, background 0.15s;
  }
  #themeToggle:hover { color: #fff; background: rgba(255,255,255,0.08); }
  #themeToggle .theme-ico { font-size: 13px; line-height: 1; opacity: 0.85; }
  #themeToggle .theme-label { opacity: 0.9; }
  .header-crest {
    width: 44px;
    height: 44px;
    background: rgba(201,185,154,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    overflow: hidden;
    border: 1.5px solid rgba(201,185,154,0.5);
  }
  .header-crest img { width: 100%; height: 100%; object-fit: contain; }
  .header-crest.placeholder {
    font-size: 8px;
    text-align: center;
    line-height: 1.1;
    color: var(--sand);
    font-weight: 700;
    letter-spacing: 0.2px;
    padding: 2px;
  }
  .header-text h1 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.2px;
    color: var(--white);
  }
  .header-text p {
    font-size: 10px;
    opacity: 0.6;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 1px;
    font-weight: 500;
  }

  /* ── NAV TABS ── */
  .nav-tabs {
    background: linear-gradient(135deg, #151d29 0%, #1d2737 100%);
    display: flex;
    max-width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 0 8px;
    gap: 2px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-tabs::-webkit-scrollbar { display: none; }
  .nav-tabs button {
    background: none;
    border: none;
    color: rgba(255,255,255,0.62);
    padding: 11px 16px;
    font-size: 11.5px;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    border-radius: 6px 6px 0 0;
    transition: all 0.18s;
    margin-top: 4px;
  }
  .nav-tabs button:hover { color: #fff; background: rgba(255,255,255,0.08); }
  /* unified tab colour — all teal except Feedback */
  .nav-tabs button { border-bottom: 3px solid #6f9aa6; }
  #feedbackTabBtn { border-bottom-color: #76a89f; }
  .nav-tabs button.active { color: #fff; background: #366a7d; }
  #feedbackTabBtn.active { background: #3d7d74; }

  /* ── COUNTDOWN BANNER ── */
  .countdown-banner {
    background: var(--red);
    color: var(--white);
    text-align: center;
    padding: 9px 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
  }
  .countdown-banner.ok { background: var(--green); }
  .countdown-banner.warning { background: #d97706; color: var(--white); }
  .countdown-banner.danger { background: var(--red); color: var(--white); }
  .countdown-time { font-family: var(--font-mono); font-size: 15px; margin-left: 8px; font-weight: 600; }

  /* ── MAIN CONTENT ── */
  .main { max-width: 1000px; margin: 0 auto; padding: 28px 24px; }

  /* ── PANELS / CARDS ── */
  .panel {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s;
  }
  .panel:hover { box-shadow: var(--shadow-md); }
  .panel-header {
    background: var(--accent, var(--olive));
    color: var(--white);
    padding: 13px 18px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .panel-header.dark { background: var(--ink); }
  .panel-header.red { background: var(--red-light); color: #fff; }
  .panel-header.amber { background: linear-gradient(135deg, #c98a33 0%, #b87a28 100%); color: #fff; }
  .panel-header.green { background: var(--green); }
  .panel-body { padding: 22px; }

  /* ── FORMS ── */
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
  .form-row.three { grid-template-columns: 1fr 1fr 1fr; }
  .form-row.single { grid-template-columns: 1fr; }
  @media (max-width: 600px) { .form-row, .form-row.three { grid-template-columns: 1fr; } }
  .form-group { display: flex; flex-direction: column; gap: 5px; }
  .form-group label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: var(--olive);
  }
  .form-group input, .form-group select, .form-group textarea {
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 10px 13px;
    font-size: 14px;
    font-family: var(--font-body);
    background: var(--card);
    color: var(--black);
    transition: border-color 0.15s, box-shadow 0.15s;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--olive);
    box-shadow: 0 0 0 3px rgba(47,109,122,0.15);
    background: var(--card);
  }
  .form-group input.error { border-color: var(--red); background: rgba(176,74,74,0.12); }

  /* ── SECTION DIVIDER ── */
  .section-label {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--olive-light);
    border-bottom: 1px solid var(--border);
    padding-bottom: 6px;
    margin: 22px 0 14px;
  }

  /* ── MEAL TABLE ── */
  .meal-table { width: 100%; border-collapse: collapse; font-size: 13px; }
  .meal-table th {
    background: var(--accent, var(--olive));
    color: #fff;
    padding: 9px 7px;
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.12);
  }
  .meal-table th.day-col { box-shadow: inset 0 0 0 999px rgba(0,0,0,0.14); text-align: left; padding-left: 12px; }
  .meal-table td { border: 1px solid var(--border); padding: 5px; vertical-align: middle; }
  .meal-table td.day-name {
    background: var(--sand-light);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 7px 12px;
    white-space: nowrap;
    color: var(--olive);
  }
  .meal-table td.remarks { padding: 4px 6px; }
  .meal-table input[type="number"] {
    width: 54px;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    padding: 6px 4px;
    text-align: center;
    font-size: 13px;
    background: var(--card);
    color: var(--black);
    font-family: var(--font-mono);
    transition: border-color 0.15s, box-shadow 0.15s;
  }
  .meal-table input[type="number"]:focus { outline: none; border-color: var(--olive); background: var(--card); box-shadow: 0 0 0 2px rgba(47,109,122,0.14); }
  .meal-table select {
    width: 70px;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    padding: 6px 4px;
    font-size: 12px;
    background: var(--card);
    color: var(--black);
    cursor: pointer;
    transition: border-color 0.15s, box-shadow 0.15s;
  }
  .meal-table select:focus { outline: none; border-color: var(--olive); background: var(--card); box-shadow: 0 0 0 2px rgba(47,109,122,0.14); }
  .meal-table input[type="text"] {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: 4px;
    padding: 4px 6px;
    font-size: 12px;
    background: var(--cream);
  }
  .meal-table input[type="text"]:focus { outline: none; border-color: var(--olive); background: var(--card); }

  /* ── CM TABLE ── */
  .cm-table { width: 100%; border-collapse: collapse; font-size: 12px; }
  .cm-table th {
    background: var(--ink);
    color: var(--white);
    padding: 7px 4px;
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.08);
  }
  .cm-table th.group-header { background: var(--olive); padding: 6px; text-align: center; font-size: 10px; letter-spacing: 0.5px; }
  .cm-table td { border: 1px solid var(--border); padding: 4px 3px; text-align: center; vertical-align: middle; }
  .cm-table td.day-name {
    background: var(--sand-light);
    font-weight: 700;
    font-size: 11px;
    padding: 6px 10px;
    text-align: left;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: var(--olive);
  }
  .cm-table input[type="number"] {
    width: 38px;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    padding: 3px 2px;
    text-align: center;
    font-size: 12px;
    background: var(--cream);
    font-family: var(--font-mono);
  }
  .cm-table input[type="number"]:focus { outline: none; border-color: var(--olive); background: var(--card); }

  /* ── COLLECTION TABLE ── */
  .coll-table { width: 100%; border-collapse: collapse; font-size: 13px; }
  .coll-table th {
    background: var(--olive);
    color: var(--white);
    padding: 9px 12px;
    text-align: left;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.1);
  }
  .coll-table td { border: 1px solid var(--border); padding: 5px; vertical-align: middle; }
  .coll-table td.day-name {
    background: var(--sand-light);
    font-weight: 700;
    font-size: 11px;
    padding: 7px 12px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: var(--olive);
  }
  .coll-table input {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: 4px;
    padding: 5px 8px;
    font-size: 13px;
    background: var(--cream);
  }
  .coll-table input:focus { outline: none; border-color: var(--olive); background: var(--card); }

  /* ── FILE UPLOAD ── */
  .upload-zone {
    display: block;
    border: 2px dashed var(--border-strong);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    background: var(--cream);
    cursor: pointer;
    transition: all 0.18s;
    position: relative;
  }
  .upload-zone:hover { border-color: var(--olive); background: var(--sand-light); }
  .upload-zone:active { border-color: var(--olive); background: #ddeadd; }
  .upload-zone.has-file { border-color: var(--green); background: var(--sand-light); border-style: solid; }
  /* File inputs use position:absolute; inset:0 to fill the entire label area — the user taps the input
     directly rather than relying on label-click forwarding, which fails on Android Chrome from file:// URLs
     because the synthesised click isn't treated as a trusted user gesture for the file picker. */
  .upload-icon { font-size: 30px; margin-bottom: 8px; }
  .upload-text { font-size: 13px; color: var(--text-muted); }
  .upload-text strong { color: var(--olive); display: block; margin-bottom: 4px; font-size: 14px; font-weight: 600; }
  .upload-filename { font-size: 13px; color: var(--green); font-weight: 600; margin-top: 6px; }
  .upload-required {
    font-size: 10.5px;
    color: var(--red);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
  }

  /* ── BUTTONS ── */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 20px;
    border: none;
    border-radius: var(--radius);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    font-family: var(--font-body);
    transition: all 0.18s;
    text-transform: uppercase;
  }
  .btn-primary { background: var(--olive); color: var(--white); box-shadow: var(--shadow-sm); }
  .btn-primary:hover { background: var(--olive-hover); box-shadow: var(--shadow-md); transform: translateY(-1px); }
  .btn-danger { background: var(--red); color: var(--white); box-shadow: var(--shadow-sm); }
  .btn-danger:hover { background: var(--red-light); box-shadow: var(--shadow-md); transform: translateY(-1px); }
  .btn-success { background: var(--green); color: var(--white); box-shadow: var(--shadow-sm); }
  .btn-success:hover { background: var(--green-light); box-shadow: var(--shadow-md); transform: translateY(-1px); }
  .btn-outline { background: var(--card); border: 1.5px solid var(--border-strong); color: var(--olive); }
  .btn-outline:hover { background: var(--sand-light); border-color: var(--olive-light); }
  .btn-sm { padding: 5px 12px; font-size: 10.5px; }
  .btn-full { width: 100%; justify-content: center; }

  /* ── LOGIN PAGE (modern split-screen) ── */
  .login-screen {
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    background: #0e1411;
  }
  .login-screen.hidden { display: none; }

  /* Left brand panel — light / whitish */
  .login-brand {
    flex: 1;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 64px 56px;
    color: #28323f;
    background: linear-gradient(150deg, #ffffff 0%, #eef2f7 55%, #e3e9f1 100%);
  }
  .login-brand::before,
  .login-brand::after {
    content: '';
    position: absolute;
    border-radius: 40px;
    transform: rotate(35deg);
    background: rgba(40,60,90,0.035);
    pointer-events: none;
  }
  .login-brand::before { width: 480px; height: 220px; top: -60px; right: -120px; }
  .login-brand::after  { width: 520px; height: 240px; bottom: -90px; left: -140px; background: rgba(199,154,74,0.08); }
  .login-brand .brand-crest { font-size: 30px; margin-bottom: auto; display:flex; align-items:center; gap:10px; font-weight:700; letter-spacing:0.5px; color:#1f2937; }
  .login-brand .brand-crest img.logo { height: 40px; width: auto; display: block; filter: drop-shadow(0 3px 8px rgba(0,0,0,0.18)); }
  .login-brand .brand-crest span.logo { font-size: 28px; }
  .login-brand .welcome-eyebrow {
    font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
    color: #8a7338; font-weight: 700; margin-bottom: 14px;
  }
  .login-brand h1 {
    font-family: var(--font-display);
    font-size: clamp(38px, 5vw, 62px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -1px;
    margin-bottom: 22px;
    color: #1b2430;
  }
  .login-brand .brand-rule { width: 54px; height: 4px; border-radius: 4px; background: #c79a4a; margin-bottom: 22px; }
  .login-brand p.brand-copy { font-size: 14px; line-height: 1.7; color: #4a5566; max-width: 420px; }
  .login-brand .brand-foot { margin-top: auto; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: #8a93a0; font-weight: 600; }

  /* Right form panel — fixed dark premium look in BOTH themes */
  .login-form-wrap {
    width: 460px;
    max-width: 100%;
    background: linear-gradient(150deg, #131a26 0%, #1f2c40 50%, #2a3a52 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 56px 48px;
  }
  .login-form-wrap h2 {
    font-family: var(--font-display);
    font-size: 28px; font-weight: 700; color: #f4f6fa;
    text-align: center; margin-bottom: 6px;
  }
  .login-form-wrap .form-sub { text-align:center; font-size:12.5px; color:#8a94a6; margin-bottom: 26px; }

  /* Toggle — sliding switch */
  .login-toggle {
    position: relative;
    display: flex; background: #0d121b; border-radius: 999px; padding: 4px; margin-bottom: 26px;
    border: 1px solid rgba(255,255,255,0.08);
  }
  .login-toggle::before {
    content: '';
    position: absolute;
    top: 4px; bottom: 4px; left: 4px;
    width: calc(33.333% - 4px);
    border-radius: 999px;
    background: linear-gradient(135deg, var(--olive) 0%, var(--olive-hover) 100%);
    box-shadow: var(--shadow-sm);
    transition: transform 0.28s cubic-bezier(0.4, 0.0, 0.2, 1);
    z-index: 0;
  }
  .login-toggle.pos-chef::before { transform: translateX(100%); }
  .login-toggle.pos-admin::before { transform: translateX(200%); }
  .login-toggle button {
    position: relative; z-index: 1;
    flex: 1; border: none; background: transparent; color: #8a94a6;
    padding: 9px 0; border-radius: 999px; font-size: 12.5px; font-weight: 600;
    cursor: pointer; font-family: var(--font-body); letter-spacing: 0.3px; transition: color 0.2s;
  }
  .login-toggle button.active { color: #fff; }

  .login-form { display: none; }
  .login-form.active { display: block; }

  .login-field { margin-bottom: 16px; }
  .login-field label {
    display: block; font-size: 11.5px; font-weight: 600; letter-spacing: 0.3px;
    color: #aeb8c6; margin-bottom: 7px;
  }
  .login-field .input-wrap { position: relative; }
  .login-field .input-icon {
    position: absolute; left: 15px; top: 50%; transform: translateY(-50%);
    display: flex; align-items: center; color: #9aa3b0; pointer-events: none;
  }
  .login-field .password-toggle {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    color: #8a93a0;
    font-size: 16px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
  }
  .login-field .password-toggle:hover { color: var(--olive); }
  .login-form input {
    width: 100%;
    border: 1.5px solid rgba(255,255,255,0.1);
    border-radius: 999px;
    padding: 13px 46px 13px 46px !important;
    font-size: 14px;
    font-family: var(--font-body);
    font-weight: 500;
    background: #ffffff;
    color: #1b2430;
    box-sizing: border-box;
    transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
  }
  .login-form input::placeholder { color: #8a93a0; font-weight: 400; }
  .login-form input.code-input { font-family: var(--font-mono); letter-spacing: 2px; }
  .login-form input.code-input::placeholder { letter-spacing: 0.5px; font-family: var(--font-body); }
  .login-form input:focus {
    outline: none; border-color: var(--sand); background: #ffffff;
    box-shadow: 0 0 0 3px rgba(199,154,74,0.3);
  }

  .login-submit {
    width: 100%; border: none; cursor: pointer;
    margin-top: 8px; padding: 14px; border-radius: 999px;
    font-size: 14.5px; font-weight: 700; letter-spacing: 0.3px; color: #1a212d;
    font-family: var(--font-body);
    background: linear-gradient(135deg, #e3c79a 0%, #d9b88a 50%, #c79a4a 100%);
    box-shadow: 0 8px 20px rgba(201,154,74,0.25);
    transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
  }
  .login-submit:hover { transform: translateY(-1px); filter: brightness(1.05); box-shadow: 0 10px 26px rgba(201,154,74,0.38); }
  .login-submit:active { transform: translateY(0); }

  .login-forgot { text-align: right; margin: -6px 0 14px; }
  .login-forgot a { color: var(--olive); font-size: 11.5px; text-decoration: none; font-weight: 500; }
  .login-forgot a:hover { color: var(--olive-hover); text-decoration: underline; }

  .access-error { color: var(--red-light); font-size: 12px; margin-bottom: 12px; min-height: 16px; font-weight: 500; text-align: center; }
  .access-screen { display: none; }

  @media (max-width: 820px) {
    .login-screen { flex-direction: column; }
    .login-brand { padding: 48px 32px; min-height: 38vh; }
    .login-brand h1 { font-size: clamp(34px, 9vw, 48px); }
    .login-brand .brand-foot, .login-brand .brand-crest { display: none; }
    .login-form-wrap { width: 100%; padding: 40px 28px 56px; }
  }

  /* ── ALERTS ── */
  .alert {
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 13px;
    margin-bottom: 16px;
    border-left: 4px solid;
    font-weight: 500;
  }
  .alert-success { background: rgba(47,138,114,0.14); border-color: var(--green); color: var(--green-light); }
  .alert-error { background: rgba(176,74,74,0.14); border-color: var(--red); color: var(--red-light); }
  .alert-warning { background: rgba(199,154,74,0.14); border-color: var(--amber); color: var(--amber); }

  /* ── CHEF / WEEK SELECTOR ── */
  .week-selector { display: flex; gap: 10px; align-items: center; margin-bottom: 22px; flex-wrap: wrap; }
  .week-selector select, .week-selector input {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    font-size: 13px;
    font-family: var(--font-body);
    background: var(--card);
    box-shadow: var(--shadow-sm);
    transition: border-color 0.15s;
  }
  .week-selector select:focus, .week-selector input:focus { outline: none; border-color: var(--olive); }

  .day-block { margin-bottom: 24px; }
  .day-block-header {
    background: var(--ink);
    color: var(--white);
    padding: 11px 16px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border-radius: var(--radius) var(--radius) 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .meal-block {
    border: 1px solid var(--border);
    border-top: none;
    background: var(--card);
  }
  .meal-block:last-child { border-radius: 0 0 var(--radius) var(--radius); }
  .meal-block-header {
    background: var(--sand-light);
    padding: 9px 16px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--olive);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .meal-totals {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding: 10px 16px;
    border-bottom: 1px solid var(--border);
    background: var(--card);
  }
  .meal-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 11.5px;
    font-weight: 700;
    font-family: var(--font-mono);
  }
  .badge-in { background: var(--olive); color: var(--white); }
  .badge-pm { background: #5b4c2e; color: var(--white); }
  .badge-cm { background: var(--ink); color: var(--sand); }
  .badge-orp { background: var(--red); color: var(--white); }
  .badge-nerts { background: #1a3a5c; color: var(--white); }
  .badge-total { background: var(--green); color: var(--white); }

  .platoon-list { padding: 0; }
  .platoon-row {
    display: flex;
    align-items: center;
    padding: 9px 16px;
    border-bottom: 1px solid #f0ece6;
    gap: 10px;
    font-size: 13px;
    transition: background 0.12s;
  }
  .platoon-row:hover { background: var(--card-2); }
  .platoon-row:last-child { border-bottom: none; }
  .platoon-check {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 2px solid var(--border-strong);
    cursor: pointer;
    flex-shrink: 0;
    accent-color: var(--green);
  }
  .platoon-name { font-weight: 600; color: var(--olive); min-width: 140px; }
  .platoon-company { font-size: 11px; color: var(--text-muted); }
  .platoon-counts { display: flex; gap: 6px; flex-wrap: wrap; margin-left: auto; }
  .count-badge {
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: var(--font-mono);
    font-weight: 600;
  }
  .cb-in { background: #e6ede6; color: var(--olive); }
  .cb-pm { background: #ede8e0; color: #5b4c2e; }
  .cb-cm { background: #e8e8e8; color: #2a2f38; }
  .cb-orp { background: #fde8e8; color: var(--red); }
  .cb-nerts { background: #e8eef5; color: #1a3a5c; }

  .platoon-checked .platoon-name { text-decoration: line-through; opacity: 0.45; }
  .platoon-checked .platoon-counts { opacity: 0.35; }

  /* ── MISSING ORDERS ── */
  .missing-list { list-style: none; }
  .missing-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
  }
  .missing-list li:last-child { border-bottom: none; }
  .missing-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--red);
    flex-shrink: 0;
  }

  /* ── EMAIL REMINDER PREVIEW ── */
  .share-box {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafb 100%);
    color: var(--text);
    border: 1px solid var(--border);
    border-left: 5px solid var(--olive);
    padding: 18px 20px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 14px;
    white-space: pre-wrap;
    margin-bottom: 12px;
    line-height: 1.65;
    box-shadow: var(--shadow-sm);
  }

  /* ── ADMIN ── */
  .admin-code-display {
    background: var(--ink);
    color: var(--sand);
    font-family: var(--font-mono);
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 8px;
    text-align: center;
    padding: 18px;
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
  }

  /* ── ORDER CARDS ── */
  .order-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.15s;
  }
  .order-card:hover { box-shadow: var(--shadow-md); }
  .order-card-header {
    background: var(--sand-light);
    padding: 11px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 8px;
  }
  .order-card-header .unit { font-weight: 700; font-size: 14px; color: var(--olive); }
  .order-card-header .meta { font-size: 11px; color: var(--text-muted); }
  .order-card-body { padding: 14px 16px; font-size: 13px; }

  /* summary-table and inner-tabs defined in the global section below */

  /* ── UTILITIES ── */
  .text-center { text-align: center; }
  .mt-8 { margin-top: 8px; }
  .mt-16 { margin-top: 16px; }
  .mt-20 { margin-top: 20px; }
  .mb-8 { margin-bottom: 8px; }
  .mb-16 { margin-bottom: 16px; }
  .flex { display: flex; }
  .gap-8 { gap: 8px; }
  .gap-12 { gap: 12px; }
  .items-center { align-items: center; }
  .justify-between { justify-content: space-between; }
  .flex-wrap { flex-wrap: wrap; }
  .small { font-size: 12px; color: var(--text-muted); }
  .bold { font-weight: 600; }
  .red { color: var(--red); }
  .green { color: var(--green); }
  .hidden { display: none; }

  /* ── PRINT ── */
  @media print {
    .nav-tabs, .countdown-banner, .btn, .inner-tabs { display: none !important; }
    .main { padding: 0; }
    .panel { box-shadow: none; break-inside: avoid; border-radius: 0; }
    body { background: white; }
    .site-header { position: static; }
  }

  /* ── SCROLL ── */
  .table-scroll { overflow-x: auto; }

  /* ── WEEK BADGE (order form) ── */
  .week-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--olive); color: #fff;
    border-radius: var(--radius); padding: 9px 14px;
    font-size: 13px; font-weight: 600; letter-spacing: 0.2px;
    min-height: 40px; box-sizing: border-box;
  }
  .week-badge.empty { background: var(--sand-light); color: var(--text-muted); }

  /* ── CHEF TOOLBAR + VIEW SELECTORS ── */
  .chef-toolbar {
    display: flex; align-items: flex-end; gap: 14px; flex-wrap: wrap;
    background: var(--card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 12px 16px; margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
  }
  .chef-fb-group { display: flex; flex-direction: column; gap: 4px; }
  .chef-fb-group label { font-size: 10.5px; font-weight: 700; letter-spacing: 0.4px; text-transform: uppercase; color: var(--text-muted); }
  .chef-fb-group select {
    border: 1.5px solid var(--border); border-radius: 6px; padding: 7px 11px;
    font-size: 13px; background: var(--card); color: var(--black); font-family: var(--font-body); min-width: 150px;
  }
  .chef-fb-group select:focus { outline: none; border-color: var(--olive); box-shadow: 0 0 0 3px rgba(47,109,122,0.15); }
  .chef-fb-spacer { flex: 1; min-width: 0; }

  /* dashboard inline controls */
  .dash-controls {
    display: flex; flex-direction: column; gap: 12px;
    margin-bottom: 18px; padding-bottom: 16px; border-bottom: 1px solid var(--border);
  }
  .dash-controls-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
  /* neat, consistent filter pills that wrap into an even grid */
  .dash-filters-row { flex-wrap: wrap; align-items: center; gap: 12px 18px; padding-bottom: 2px; }
  .dash-filters-row .dash-ctl { flex: 0 0 auto; gap: 6px; }
  .dash-filters-row .dash-ctl select,
  .dash-filters-row .dash-ctl input[type="date"] {
    width: auto; min-width: 124px;
    text-align: left; text-align-last: left;
    padding-right: 1.8em;
  }
  /* the date pickers and short selects don't need the full min-width */
  .dash-filters-row .dash-ctl input[type="date"] { min-width: 150px; }
  .dash-controls-actions { gap: 10px; }
  .dash-ctl { display: flex; align-items: center; gap: 6px; }
  .dash-ctl label { font-size: 11px; font-weight: 700; letter-spacing: 0.2px; color: var(--olive); white-space: nowrap; }
  .dash-ctl select, .dash-ctl input[type="date"] {
    border: 1.5px solid var(--border); border-radius: 6px; padding: 6px 10px;
    font-size: 13px; background: var(--card); color: var(--black); font-family: var(--font-body);
  }
  .dash-ctl select:focus, .dash-ctl input:focus { outline: none; border-color: var(--olive); box-shadow: 0 0 0 3px rgba(47,109,122,0.15); }

  /* per-view date selector */
  .view-selector {
    display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
    background: var(--card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 12px 16px; margin-bottom: 18px; box-shadow: var(--shadow-sm);
  }
  .view-selector label { font-size: 12px; font-weight: 700; color: var(--olive); letter-spacing: 0.2px; }
  .view-selector select, .view-selector input[type="date"] {
    border: 1.5px solid var(--border); border-radius: 6px; padding: 7px 11px;
    font-size: 13px; background: var(--card); color: var(--black); font-family: var(--font-body);
  }
  .view-selector select:focus, .view-selector input:focus { outline: none; border-color: var(--olive); box-shadow: 0 0 0 3px rgba(47,109,122,0.15); }
  .view-selector-hint { font-size: 11.5px; color: var(--text-muted); }

  /* balanced inner-tab grid */
  .inner-tabs-grid { display: grid !important; grid-template-columns: repeat(5, 1fr); gap: 6px; }
  .inner-tabs-grid button { text-align: center; }
  @media (max-width: 820px) { .inner-tabs-grid { grid-template-columns: repeat(2, 1fr); } }

  /* ── ADMIN DASHBOARD ── */
  .dash-caption {
    font-size: 12px; font-weight: 600; color: var(--text-muted);
    background: var(--sand-light); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 8px 14px; margin-bottom: 16px;
    display: inline-block;
  }
  .dash-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 22px;
  }
  @media (max-width: 640px) { .dash-cards { grid-template-columns: repeat(2, 1fr); } }
  .dash-card {
    background: var(--card-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 14px;
    text-align: center;
  }
  .dash-num { font-size: 30px; font-weight: 700; color: var(--olive); line-height: 1.1; font-family: var(--font-display); }
  .dash-label { font-size: 10.5px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; color: var(--text-muted); margin-top: 4px; }
  .dash-donuts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
  }
  @media (max-width: 1200px) { .dash-donuts { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 900px) { .dash-donuts { grid-template-columns: 1fr; } }
  .dash-donut-block {
    display: flex; flex-direction: column; align-items: center; gap: 14px;
    background: var(--card-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 16px;
  }
  .dash-donut-title { font-size: 12px; font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase; color: var(--text-muted); }
  .dash-chart-wrap { position: relative; width: 168px; height: 168px; }
  .dash-chart-wrap svg { display: block; width: 100%; height: 100%; }
  .dash-bd-more { color: var(--text-muted); font-size: 11px; font-style: italic; padding-left: 22px; }
  .dash-chart-center {
    position: absolute; inset: 0; display: flex; flex-direction: column;
    align-items: center; justify-content: center; pointer-events: none;
  }
  .dash-center-num { font-size: 28px; font-weight: 700; color: var(--black); font-family: var(--font-display); line-height: 1; }
  .dash-center-label { font-size: 10px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); margin-top: 2px; }
  .dash-breakdown { display: flex; flex-direction: column; gap: 9px; width: 100%; }
  .dash-bd-row { display: flex; align-items: center; gap: 10px; font-size: 13px; }
  .dash-dot { width: 12px; height: 12px; border-radius: 3px; flex-shrink: 0; }
  .dash-bd-label { flex: 1; font-weight: 500; color: var(--black); }
  .dash-bd-val { font-weight: 700; font-family: var(--font-mono); color: var(--black); }
  .dash-bd-pct { width: 44px; text-align: right; color: var(--text-muted); font-size: 12px; }

  /* ── FORM CONTROLS ── */
  .form-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: var(--black);
    margin-bottom: 7px;
  }
  .form-control {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 11px 13px;
    font-size: 14px;
    font-family: var(--font-body);
    color: var(--black);
    background: var(--card);
    box-sizing: border-box;
    transition: border-color 0.15s, box-shadow 0.15s;
  }
  textarea.form-control { line-height: 1.55; min-height: 110px; }
  .form-control:focus { outline: none; border-color: var(--olive); box-shadow: 0 0 0 3px rgba(47,109,122,0.18); }
  select.form-control { max-width: 320px; cursor: pointer; }

  /* ── GLOBAL INPUT BASELINE (catches any unstyled inputs) ── */
  input:not([type="checkbox"]):not([type="radio"]):not([type="range"]),
  select,
  textarea {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--black);
    background: var(--card);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 8px 11px;
    transition: border-color 0.15s, box-shadow 0.15s;
    box-sizing: border-box;
  }
  input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):focus,
  select:focus,
  textarea:focus {
    outline: none;
    border-color: var(--olive);
    box-shadow: 0 0 0 3px rgba(47,109,122,0.18);
    background: var(--card);
  }
  input[readonly], select[disabled] {
    background: var(--sand-light) !important;
    color: var(--text-muted);
    cursor: default;
  }

  /* ── SUMMARY TABLES (chef view) ── */
  .summary-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    margin-bottom: 8px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
  }
  .summary-table thead th {
    background: var(--ink);
    color: var(--white);
    padding: 10px 12px;
    text-align: left;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    border: none;
  }
  .summary-table tbody td {
    padding: 9px 12px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
  }
  .summary-table tbody tr:last-child td { border-bottom: none; }
  .summary-table tbody tr:nth-child(even) td { background: var(--cream); }
  .summary-table tbody tr:hover td { background: var(--sand-light); }
  .summary-table tr.total-row td {
    background: var(--olive) !important;
    color: var(--white);
    font-weight: 700;
    font-size: 13px;
    border: none;
  }

  /* ── CHEF INNER TABS ── */
  .inner-tabs {
    background: var(--card);
    border-radius: var(--radius);
    padding: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
  }
  .inner-tabs button {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 9px 16px;
    font-size: 12px;
    font-family: var(--font-body);
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.15s;
    white-space: nowrap;
    letter-spacing: 0.3px;
  }
  .inner-tabs button:hover { background: var(--sand-light); color: var(--olive); }
  .inner-tabs button.active {
    background: var(--olive);
    color: #fff;
    box-shadow: var(--shadow-sm);
  }
  .inner-tabs .tab-bottom-center { /* no longer special — flows in flex row */ }

  .daily-cover-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 28px;
    align-items: stretch;
  }
  .daily-cover-card {
    color: #fff;
    padding: 18px 14px;
    border-radius: var(--radius);
    text-align: center;
    min-height: 104px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255,255,255,0.08);
  }
  .daily-cover-card .value {
    font-size: 2.1rem;
    line-height: 1;
    font-weight: 800;
    font-family: var(--font-display);
    margin-bottom: 10px;
  }
  .daily-cover-card .label {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    opacity: 0.92;
  }
  .daily-bottom {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 24px; margin: 8px 0 32px;
  }
  .daily-donut-wrap { position: relative; width: 300px; height: 300px; flex-shrink: 0; }
  .daily-donut-wrap svg { display: block; width: 100%; height: 100%; filter: drop-shadow(0 8px 20px rgba(20,30,50,0.12)); }
  .daily-donut-center {
    position: absolute; inset: 0; display: flex; flex-direction: column;
    align-items: center; justify-content: center; pointer-events: none;
  }
  .daily-donut-center .dn { font-size: 56px; font-weight: 800; color: var(--black); font-family: var(--font-display); line-height: 1; }
  .daily-donut-center .lb { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-top: 4px; }
  .daily-cover-total {
    border-radius: 999px;
    min-height: 92px;
    min-width: 320px;
    box-shadow: var(--shadow-md);
  }
  .daily-cover-total .value { font-size: 2.6rem; margin-bottom: 6px; }
  @media (max-width: 1200px) {
    .daily-cover-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  }
  @media (max-width: 700px) {
    .daily-cover-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  }

  /* ── QUICK FILL BAR ── */
  .quick-fill-bar {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 18px;
  }

  /* ── DAY ROWS TABLE (CM/PM multi-day) ── */
  .day-rows-table { width: 100%; border-collapse: collapse; font-size: 13px; }
  .day-rows-table th {
    background: var(--olive);
    color: var(--white);
    padding: 9px 10px;
    text-align: left;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: none;
  }
  .day-rows-table td {
    padding: 6px 5px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
  }
  .day-rows-table tbody tr:hover td { background: var(--cream); }
  .day-rows-table input, .day-rows-table select {
    width: 100%;
    padding: 6px 8px;
    font-size: 13px;
  }

  /* Rating stars (feedback survey) */
  .rating-btn { line-height: 1; color: #d9d2c4; }
  .rating-btn:hover { transform: scale(1.12); }
  .feedback-form { max-width: 540px; }
