/* ==========================================
   🥪 SANDWICH ORDER SYSTEM - STYLES
   โทนสี เขียว-ขาว น่ารัก
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Prompt:wght@300;400;500;600;700&family=Sarabun:wght@300;400;500;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --green-50:  #f0fdf4;
  --green-100: #dcfce7;
  --green-200: #bbf7d0;
  --green-300: #86efac;
  --green-400: #4ade80;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  --green-800: #166534;
  --green-900: #14532d;

  --mint-light: #e8f8f0;
  --mint-mid:   #c6f0d8;
  --cream:      #fffef9;
  --white:      #ffffff;

  --text-dark:  #1a2e1a;
  --text-mid:   #3d5c3d;
  --text-light: #6b8f6b;
  --text-muted: #9ab89a;

  --shadow-sm:  0 1px 3px rgba(22,163,74,0.12), 0 1px 2px rgba(22,163,74,0.08);
  --shadow-md:  0 4px 16px rgba(22,163,74,0.15), 0 2px 6px rgba(22,163,74,0.1);
  --shadow-lg:  0 10px 40px rgba(22,163,74,0.18), 0 4px 12px rgba(22,163,74,0.12);
  --shadow-xl:  0 20px 60px rgba(22,163,74,0.22);

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --radius-full: 9999px;

  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Prompt', 'Sarabun', sans-serif;
  background: var(--green-50);
  color: var(--text-dark);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ============================================
   🌿 BACKGROUND DECORATION
   ============================================ */
body::before {
  content: '';
  position: fixed;
  top: -30%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(134,239,172,0.25) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
body::after {
  content: '';
  position: fixed;
  bottom: -20%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(74,222,128,0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ============================================
   🏠 HEADER / HERO
   ============================================ */
.site-header {
  background: linear-gradient(135deg, rgba(21,128,61,0.85) 0%, rgba(34,197,94,0.8) 60%, rgba(74,222,128,0.7) 100%), url('assets/bg.jpg') center/cover no-repeat;
  padding: 2.5rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.site-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -30%;
  width: 80%;
  height: 200%;
  background: rgba(255,255,255,0.06);
  transform: rotate(-15deg);
  border-radius: 50%;
}
.site-header::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -20%;
  width: 60%;
  height: 150%;
  background: rgba(255,255,255,0.04);
  transform: rotate(10deg);
  border-radius: 50%;
}

.header-emoji {
  font-size: 3.5rem;
  display: block;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.site-header h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
  position: relative;
  z-index: 1;
}

.site-header .slogan {
  font-size: clamp(0.85rem, 2vw, 1rem);
  color: rgba(255,255,255,0.85);
  margin-top: 0.4rem;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

/* Status badge */
.order-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
  padding: 0.5rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(10px);
}

.order-status-badge.open {
  background: rgba(255,255,255,0.25);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.order-status-badge.closed {
  background: rgba(0,0,0,0.25);
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.2);
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74,222,128,0.35);
}
.status-dot.closed { background: #f87171; box-shadow: 0 0 0 3px rgba(248,113,113,0.35); }
.status-dot.open   { animation: pulse 2s infinite; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(74,222,128,0.35); }
  50%       { box-shadow: 0 0 0 6px rgba(74,222,128,0.15); }
}

/* ============================================
   📦 MAIN CONTAINER
   ============================================ */
.container {
  max-width: 800px;
  margin: -2rem auto 0;
  padding: 0 1rem 3rem;
  position: relative;
  z-index: 1;
}

/* ============================================
   🃏 CARDS
   ============================================ */
.card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 1.8rem;
  box-shadow: var(--shadow-md);
  margin-bottom: 1.4rem;
  border: 1px solid rgba(134,239,172,0.3);
  transition: var(--transition);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-1px); }

.card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-700);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.card-title span { font-size: 1.3rem; }

/* ============================================
   📝 FORM ELEMENTS
   ============================================ */
.form-group {
  margin-bottom: 1.2rem;
}

label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
}
label .required { color: #ef4444; margin-left: 2px; }

input[type="text"],
input[type="number"],
input[type="password"],
input[type="date"],
textarea,
select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--green-200);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--mint-light);
  transition: var(--transition);
  outline: none;
}
input[type="text"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="date"]:focus,
textarea:focus,
select:focus {
  border-color: var(--green-400);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(74,222,128,0.2);
}
textarea { resize: vertical; min-height: 90px; }

/* ============================================
   🥬 FILLING SELECTION
   ============================================ */
.filling-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.75rem;
}

.filling-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 0.7rem;
  border: 2px solid var(--green-200);
  border-radius: var(--radius-md);
  background: var(--mint-light);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  position: relative;
  user-select: none;
}
.filling-chip:hover {
  border-color: var(--green-400);
  background: var(--mint-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.filling-chip.selected {
  border-color: var(--green-500);
  background: var(--green-100);
  box-shadow: 0 0 0 3px rgba(74,222,128,0.2);
}

.filling-chip input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.filling-check {
  position: absolute;
  top: 0.4rem;
  right: 0.4rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: transparent;
  transition: var(--transition);
}
.filling-chip.selected .filling-check {
  background: var(--green-500);
  color: white;
}

.filling-emoji { font-size: 1.8rem; line-height: 1; }
.filling-name  { font-size: 0.8rem; font-weight: 600; color: var(--text-mid); }
.filling-price {
  font-size: 0.72rem;
  color: var(--green-600);
  font-weight: 500;
  background: var(--green-100);
  padding: 1px 6px;
  border-radius: var(--radius-full);
}

/* Quantity control on chip */
.filling-qty-ctrl {
  display: none;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.2rem;
}
.filling-chip.selected .filling-qty-ctrl { display: flex; }

.qty-btn {
  width: 22px;
  height: 22px;
  border: none;
  border-radius: 50%;
  background: var(--green-500);
  color: white;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.qty-btn:hover { background: var(--green-600); transform: scale(1.1); }
.qty-val { font-size: 0.85rem; font-weight: 700; color: var(--green-700); min-width: 16px; text-align: center; }

/* ============================================
   🍞 BREAD TYPE SELECTOR
   ============================================ */
.bread-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 0.65rem;
}

.bread-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 0.8rem 0.6rem;
  border: 2px solid var(--green-200);
  border-radius: var(--radius-md);
  background: var(--mint-light);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}
.bread-option:hover { border-color: var(--green-400); transform: translateY(-2px); }
.bread-option.selected {
  border-color: var(--green-500);
  background: var(--green-100);
  box-shadow: 0 0 0 3px rgba(74,222,128,0.2);
}
.bread-option input { display: none; }
.bread-emoji { font-size: 1.7rem; }
.bread-name  { font-size: 0.8rem; font-weight: 600; color: var(--text-mid); }

/* ============================================
   📊 ORDER SUMMARY
   ============================================ */
.summary-box {
  background: linear-gradient(135deg, var(--green-50), var(--mint-mid));
  border: 1.5px solid var(--green-200);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.4rem;
  margin: 1rem 0;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  border-bottom: 1px dashed var(--green-200);
}
.summary-item:last-child { border-bottom: none; }
.summary-label { color: var(--text-light); font-weight: 500; }
.summary-value { color: var(--text-dark); font-weight: 600; text-align: right; max-width: 65%; }

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0 0;
  margin-top: 0.4rem;
  border-top: 2px solid var(--green-300);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--green-700);
}

/* ============================================
   🔘 BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border: none;
  border-radius: var(--radius-full);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  color: white;
  box-shadow: 0 4px 15px rgba(22,163,74,0.4);
  width: 100%;
  padding: 1rem;
  font-size: 1.05rem;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--green-400), var(--green-500));
  box-shadow: 0 6px 20px rgba(22,163,74,0.5);
  transform: translateY(-2px);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary:disabled {
  background: #d1d5db;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
  color: #9ca3af;
}

.btn-secondary {
  background: var(--white);
  color: var(--green-600);
  border: 2px solid var(--green-300);
}
.btn-secondary:hover { background: var(--green-50); border-color: var(--green-500); }

.btn-danger {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  box-shadow: 0 4px 12px rgba(239,68,68,0.35);
}
.btn-danger:hover { box-shadow: 0 6px 16px rgba(239,68,68,0.45); transform: translateY(-1px); }

.btn-sm { padding: 0.45rem 1rem; font-size: 0.82rem; }
.btn-xs { padding: 0.3rem 0.7rem; font-size: 0.75rem; }

/* ============================================
   ✅ SUCCESS STATE
   ============================================ */
.success-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.success-overlay.show { display: flex; }

.success-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  max-width: 380px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  animation: popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popIn {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}

.success-icon {
  font-size: 4rem;
  display: block;
  margin-bottom: 1rem;
  animation: bounce 0.6s 0.2s both;
}
@keyframes bounce {
  0%   { transform: scale(0); }
  60%  { transform: scale(1.2); }
  100% { transform: scale(1); }
}
.success-card h2 { color: var(--green-700); font-size: 1.4rem; margin-bottom: 0.5rem; }
.success-card p  { color: var(--text-light); font-size: 0.9rem; margin-bottom: 1.5rem; }

/* ============================================
   🚨 CLOSED OVERLAY
   ============================================ */
.closed-banner {
  display: none;
  background: linear-gradient(135deg, #fef2f2, #fee2e2);
  border: 1.5px solid #fca5a5;
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  margin: 1.5rem 0;
}
.closed-banner.show { display: block; }
.closed-banner h2   { color: #dc2626; font-size: 1.3rem; margin: 0.8rem 0 0.4rem; }
.closed-banner p    { color: #6b7280; font-size: 0.9rem; }

/* ============================================
   🔔 TOAST NOTIFICATIONS
   ============================================ */
.toast-container {
  position: fixed;
  top: 1.2rem;
  right: 1.2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.toast {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.2rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.88rem;
  font-weight: 500;
  min-width: 240px;
  max-width: 320px;
  animation: slideIn 0.3s ease;
  border-left: 4px solid var(--green-500);
}
.toast.error   { border-left-color: #ef4444; }
.toast.warning { border-left-color: #f59e0b; }

@keyframes slideIn {
  from { transform: translateX(120%); opacity: 0; }
  to   { transform: translateX(0);   opacity: 1; }
}
@keyframes slideOut {
  to { transform: translateX(120%); opacity: 0; }
}
.toast.hiding { animation: slideOut 0.3s ease forwards; }

/* ============================================
   🔑 ADMIN STYLES
   ============================================ */
.admin-nav {
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.admin-nav h1 { color: white; font-size: 1.1rem; font-weight: 700; }
.admin-nav .nav-links { display: flex; gap: 0.6rem; align-items: center; }

.tab-bar {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--green-200);
  margin-bottom: 1.5rem;
  overflow-x: auto;
}
.tab-btn {
  padding: 0.7rem 1.3rem;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: var(--transition);
}
.tab-btn:hover  { color: var(--green-600); }
.tab-btn.active { color: var(--green-600); border-bottom-color: var(--green-500); }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* Toggle Switch */
.toggle-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}
.toggle-label { font-weight: 600; color: var(--text-mid); }

.toggle {
  position: relative;
  width: 60px;
  height: 30px;
}
.toggle input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  inset: 0;
  background: #d1d5db;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  left: 3px;
  top: 3px;
  background: white;
  border-radius: 50%;
  transition: var(--transition);
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.toggle input:checked + .toggle-slider { background: var(--green-500); }
.toggle input:checked + .toggle-slider::before { transform: translateX(30px); }

/* Admin Table */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.data-table th {
  background: var(--green-50);
  color: var(--green-700);
  font-weight: 700;
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 2px solid var(--green-200);
}
.data-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--green-100);
  vertical-align: middle;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--mint-light); }

/* Filling Manager */
.filling-list-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.75rem 1rem;
  background: var(--mint-light);
  border-radius: var(--radius-md);
  margin-bottom: 0.6rem;
  border: 1px solid var(--green-200);
  transition: var(--transition);
}
.filling-list-item:hover { border-color: var(--green-400); }
.filling-list-item .fill-emoji { font-size: 1.4rem; }
.filling-list-item .fill-info  { flex: 1; }
.filling-list-item .fill-name  { font-weight: 600; font-size: 0.9rem; }
.filling-list-item .fill-price { font-size: 0.78rem; color: var(--green-600); }
.filling-list-item .fill-status {
  font-size: 0.72rem;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}
.fill-status.available   { background: var(--green-100); color: var(--green-700); }
.fill-status.unavailable { background: #fee2e2; color: #dc2626; }

/* Stats Cards */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--green-100);
}
.stat-number { font-size: 2rem; font-weight: 700; color: var(--green-600); line-height: 1; }
.stat-label  { font-size: 0.78rem; color: var(--text-light); margin-top: 0.3rem; }

/* Log badges */
.badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
}
.badge-success { background: var(--green-100); color: var(--green-700); }
.badge-pending { background: #fef3c7; color: #92400e; }
.badge-cancel  { background: #fee2e2; color: #991b1b; }

/* Login */
.login-page {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.login-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 380px;
  box-shadow: var(--shadow-xl);
  text-align: center;
}
.login-card h2 { color: var(--green-700); margin: 1rem 0 0.4rem; font-size: 1.3rem; }
.login-card p  { color: var(--text-light); font-size: 0.88rem; margin-bottom: 1.5rem; }

/* Modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(4px);
  z-index: 900;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay.show { display: flex; }
body.modal-open { overflow: hidden; }

.modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  width: 100%;
  max-width: 480px;
  box-shadow: var(--shadow-xl);
  animation: popIn 0.3s ease;
}
.modal h3 { font-size: 1.15rem; color: var(--green-700); margin-bottom: 1.2rem; }
.modal-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
  justify-content: flex-end;
}

/* ============================================
   📱 RESPONSIVE
   ============================================ */
@media (max-width: 600px) {
  .filling-grid    { grid-template-columns: repeat(2, 1fr); }
  .bread-grid      { grid-template-columns: repeat(3, 1fr); }
  .admin-nav       { flex-direction: column; align-items: flex-start; }
  .data-table      { display: block; overflow-x: auto; }
  .stats-grid      { grid-template-columns: repeat(2, 1fr); }
  .modal-actions   { flex-direction: column; }
  .modal-actions .btn { width: 100%; }
}

/* ============================================
   🎨 UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-right  { text-align: right; }
.mt-1 { margin-top: 0.4rem; }
.mt-2 { margin-top: 0.8rem; }
.mt-3 { margin-top: 1.2rem; }
.mb-1 { margin-bottom: 0.4rem; }
.mb-2 { margin-bottom: 0.8rem; }
.d-flex { display: flex; }
.gap-2  { gap: 0.5rem; }
.flex-wrap { flex-wrap: wrap; }
.w-100  { width: 100%; }
.hidden { display: none !important; }
.text-muted { color: var(--text-muted); font-size: 0.85rem; }
.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
}
.empty-state .empty-icon { font-size: 3rem; display: block; margin-bottom: 0.8rem; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--green-50); }
::-webkit-scrollbar-thumb { background: var(--green-300); border-radius: var(--radius-full); }
::-webkit-scrollbar-thumb:hover { background: var(--green-400); }

/* Print */
@media print {
  .admin-nav, .tab-bar, .btn, .modal-overlay { display: none !important; }
  body { background: white; }
  .card { box-shadow: none; border: 1px solid #ddd; }
}
