/* ============================================================
   酒店零食管理系统 - 全局样式
   设计：现代卡片风 · 主色青绿 · 自适应手机/电脑
   ============================================================ */
:root {
  --primary: #0f766e;
  --primary-dark: #115e59;
  --primary-light: #14b8a6;
  --primary-bg: #f0fdfa;
  --amber: #d97706;
  --amber-bg: #fffbeb;
  --red: #dc2626;
  --red-bg: #fef2f2;
  --green: #16a34a;
  --green-bg: #f0fdf4;
  --blue: #2563eb;
  --blue-bg: #eff6ff;
  --purple: #7c3aed;
  --purple-bg: #f5f3ff;
  --gray: #6b7280;
  --gray-bg: #f3f4f6;
  --text: #1f2937;
  --text-2: #6b7280;
  --text-3: #9ca3af;
  --bg: #f1f5f4;
  --card: #ffffff;
  --border: #e5e7eb;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 1px 3px rgba(15, 23, 42, .06), 0 4px 16px rgba(15, 23, 42, .05);
  --shadow-lg: 0 12px 40px rgba(15, 23, 42, .16);
  --sidebar-w: 232px;
  --topbar-h: 60px;
  font-size: 15px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}
a { color: var(--primary); text-decoration: none; }
b { font-weight: 600; }

.icon { width: 20px; height: 20px; fill: currentColor; flex: none; }
.icon-sm { width: 16px; height: 16px; }

/* ---------- 通用组件 ---------- */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 20px;
}
.card-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 14px; flex-wrap: wrap; }
.card-head h3 { font-size: 1.02rem; }
.card-sub { color: var(--text-2); font-size: .82rem; }
.card-head-right { display: flex; align-items: center; gap: 8px; }

.empty { text-align: center; color: var(--text-3); padding: 28px 10px; font-size: .9rem; }
.empty-cell { text-align: center; color: var(--text-3); padding: 24px 10px; }
.txt-muted { color: var(--text-2); }
.txt-red { color: var(--red); font-weight: 600; }
.txt-green { color: var(--green); font-weight: 600; }

/* 徽章 */
.badge { display: inline-block; padding: 2px 10px; border-radius: 999px; font-size: .78rem; line-height: 1.6; white-space: nowrap; }
.badge-green { background: var(--green-bg); color: var(--green); }
.badge-red { background: var(--red-bg); color: var(--red); }
.badge-amber { background: var(--amber-bg); color: var(--amber); }
.badge-blue { background: var(--blue-bg); color: var(--blue); }
.badge-gray { background: var(--gray-bg); color: var(--gray); }
.badge-dark { background: #1f2937; color: #fff; }
.badge-soft { background: var(--primary-bg); color: var(--primary-dark); }

/* 按钮 */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  border: 1px solid transparent; border-radius: var(--radius-sm);
  padding: 8px 16px; font-size: .9rem; cursor: pointer; transition: all .15s;
  font-family: inherit; line-height: 1.4; white-space: nowrap;
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-ghost { background: #fff; color: var(--text); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-bg); }
.btn-danger-ghost { background: #fff; color: var(--red); border-color: var(--border); }
.btn-danger-ghost:hover { border-color: var(--red); color: var(--red); background: var(--red-bg); }
.btn-sm { padding: 5px 12px; font-size: .82rem; }
.btn-xs { padding: 3px 10px; font-size: .78rem; border-radius: 8px; }
.btn-lg { padding: 12px 20px; font-size: 1rem; }
.btn-block { width: 100%; }
.btn .icon { width: 16px; height: 16px; }

/* 表单 */
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: .85rem; color: var(--text-2); margin-bottom: 6px; }
.form-group .req { color: var(--red); }
.input, .form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 9px 12px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-size: .92rem; font-family: inherit; background: #fff; color: var(--text); transition: border .15s, box-shadow .15s;
  touch-action: manipulation; -webkit-tap-highlight-color: transparent;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus, .input:focus {
  outline: none; border-color: var(--primary-light); box-shadow: 0 0 0 3px rgba(20, 184, 166, .15);
}
.form-group input[readonly] { background: var(--gray-bg); color: var(--text-2); }
.input-sm { padding: 6px 10px; font-size: .85rem; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 14px; }
.field-label { font-size: .85rem; color: var(--text-2); margin-right: 8px; }

/* 表格 */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.data-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.data-table th {
  text-align: left; padding: 10px 12px; color: var(--text-2); font-weight: 500; font-size: .82rem;
  border-bottom: 1px solid var(--border); background: #fafafa; white-space: nowrap;
}
.data-table td { padding: 11px 12px; border-bottom: 1px solid #f1f3f5; vertical-align: middle; }
.data-table tbody tr:hover { background: #f8faf9; }
.data-table tbody tr:last-child td { border-bottom: none; }
.ta-r { text-align: right; }
.row-low td { background: #fffdf5; }
.link { color: var(--primary); font-size: .85rem; }

/* 弹窗 */
.modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 16px; }
.modal.open { display: flex; }
.modal::before { content: ''; position: absolute; inset: 0; background: rgba(15, 23, 42, .45); backdrop-filter: blur(2px); }
.modal-card {
  position: relative; background: #fff; border-radius: 16px; width: 100%; max-width: 560px; max-height: 82vh; max-height: calc(100vh - 60px);
  overflow-y: auto; box-shadow: var(--shadow-lg); animation: modalIn .18s ease;
}
.modal-sm { max-width: 420px; }
.modal-lg { max-width: 760px; }
@keyframes modalIn { from { opacity: 0; transform: translateY(14px) scale(.98); } to { opacity: 1; transform: none; } }
.modal-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--border); position: sticky; top: 0; background: #fff; z-index: 1; }
.modal-head h3 { font-size: 1.02rem; }
.modal-body { padding: 16px 20px; }
.modal-foot { display: flex; justify-content: flex-end; gap: 10px; padding: 14px 20px; border-top: 1px solid var(--border); position: sticky; bottom: 0; background: #fff; }
.icon-btn { background: none; border: none; cursor: pointer; color: var(--text-2); padding: 4px; border-radius: 8px; display: inline-flex; }
.icon-btn:hover { background: var(--gray-bg); color: var(--text); }
.check-tip { background: var(--amber-bg); color: var(--amber); font-size: .82rem; padding: 8px 16px; border-bottom: 1px solid #fde68a33; }

/* Toast */
#toastBox { position: fixed; top: 16px; left: 50%; transform: translateX(-50%); z-index: 200; display: flex; flex-direction: column; gap: 8px; align-items: center; pointer-events: none; }
.toast { background: #1f2937; color: #fff; padding: 10px 20px; border-radius: 999px; font-size: .88rem; box-shadow: var(--shadow-lg); animation: toastIn .2s ease; max-width: 90vw; }
.toast.warn { background: #b45309; }
.toast.error { background: var(--red); }
@keyframes toastIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

/* 提示条 */
.alert { padding: 10px 14px; border-radius: var(--radius-sm); font-size: .88rem; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.alert-danger { background: var(--red-bg); color: var(--red); border: 1px solid #fecaca; }
.alert-warn { background: var(--amber-bg); color: var(--amber); border: 1px solid #fde68a; }
.banner-alert { margin-bottom: 16px; }

/* Tabs */
.tabs { display: flex; gap: 4px; margin-bottom: 14px; background: #e7ecea; padding: 4px; border-radius: 12px; width: fit-content; }
.tab { border: none; background: none; padding: 8px 22px; border-radius: 9px; cursor: pointer; font-size: .9rem; color: var(--text-2); font-family: inherit; }
.tab.active { background: #fff; color: var(--primary-dark); font-weight: 600; box-shadow: var(--shadow); }

/* 迷你列表 */
.mini-list { margin: 6px 0 4px; }
.mini-row { display: flex; justify-content: space-between; align-items: center; padding: 7px 2px; border-bottom: 1px dashed var(--border); font-size: .86rem; }
.mini-row:last-child { border-bottom: none; }
.todo-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: .9rem; }
.todo-item:last-child { border-bottom: none; }
.todo-label { color: var(--text-2); }
.todo-val { font-weight: 600; }

/* ============================================================
   布局：侧边栏 + 顶栏
   ============================================================ */
.app { display: flex; min-height: 100vh; }

.sidebar {
  width: var(--sidebar-w); background: linear-gradient(180deg, #0d3b37 0%, #0f4d47 55%, #115e59 100%);
  color: #d7ece8; display: flex; flex-direction: column; position: fixed; inset: 0 auto 0 0; z-index: 50;
  transition: transform .25s ease;
}
.sidebar-brand { display: flex; align-items: center; gap: 10px; padding: 18px 18px 16px; border-bottom: 1px solid rgba(255,255,255,.08); }
.brand-logo { width: 40px; height: 40px; border-radius: 12px; background: linear-gradient(135deg, #2dd4bf, #0ea5a4); display: flex; align-items: center; justify-content: center; color: #fff; box-shadow: 0 4px 12px rgba(45,212,191,.35); }
.brand-logo .icon { width: 22px; height: 22px; }
.brand-name { font-size: 1.02rem; font-weight: 700; color: #fff; letter-spacing: .5px; }
.brand-sub { font-size: .72rem; color: #8fc9c2; }

.sidebar-nav { flex: 1; padding: 14px 12px; overflow-y: auto; }
.nav-item {
  display: flex; align-items: center; gap: 10px; color: #b9d9d4; padding: 10px 14px; border-radius: 10px;
  margin-bottom: 4px; font-size: .92rem; transition: all .15s;
}
.nav-item:hover { background: rgba(255,255,255,.08); color: #fff; }
.nav-item.active { background: rgba(45,212,191,.18); color: #fff; font-weight: 600; }
.nav-item.active::before { content: ''; position: absolute; left: 0; }
.sidebar-foot { padding: 12px; border-top: 1px solid rgba(255,255,255,.08); }
.side-user { display: flex; align-items: center; gap: 10px; padding: 8px 12px; margin-bottom: 6px; }
.side-user-name { color: #fff; font-size: .9rem; font-weight: 600; }
.side-user-role { color: #8fc9c2; font-size: .76rem; }
.avatar {
  width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: .95rem; flex: none;
}
.avatar-sm { width: 28px; height: 28px; font-size: .8rem; }

.sidebar-mask { display: none; position: fixed; inset: 0; background: rgba(15,23,42,.45); z-index: 45; }

.main { flex: 1; margin-left: var(--sidebar-w); display: flex; flex-direction: column; min-width: 0; }
.topbar {
  height: var(--topbar-h); background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 12px; padding: 0 20px;
  position: sticky; top: 0; z-index: 40;
}
.topbar-title { font-size: 1.05rem; font-weight: 600; }
.topbar-right { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.topbar-user { display: flex; align-items: center; gap: 8px; font-size: .88rem; color: var(--text-2); }
.role-tag { background: var(--primary-bg); color: var(--primary-dark); padding: 2px 10px; border-radius: 999px; font-size: .76rem; font-weight: 500; }
.menu-btn { display: none; }

.content { flex: 1; padding: 20px; max-width: 1280px; width: 100%; margin: 0 auto; }
.footer { padding: 14px 20px; text-align: center; color: var(--text-3); font-size: .78rem; }

/* ============================================================
   工作台
   ============================================================ */
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px; margin-bottom: 16px; }
.stat-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; display: flex; align-items: center; gap: 14px; box-shadow: var(--shadow); }
.stat-icon { width: 46px; height: 46px; border-radius: 13px; display: flex; align-items: center; justify-content: center; flex: none; }
.stat-icon .icon { width: 24px; height: 24px; }
.stat-val { font-size: 1.5rem; font-weight: 700; line-height: 1.2; }
.stat-label { font-size: .8rem; color: var(--text-2); margin-top: 2px; }
.stat-teal .stat-icon { background: var(--primary-bg); color: var(--primary); }
.stat-green .stat-icon { background: var(--green-bg); color: var(--green); }
.stat-blue .stat-icon { background: var(--blue-bg); color: var(--blue); }
.stat-amber .stat-icon { background: var(--amber-bg); color: var(--amber); }
.stat-red .stat-icon { background: var(--red-bg); color: var(--red); }
.stat-purple .stat-icon { background: var(--purple-bg); color: var(--purple); }

.grid-2col { display: grid; grid-template-columns: 1.4fr 1fr; gap: 16px; }
.chart-box { position: relative; }
.chart-box canvas { width: 100%; display: block; }

/* 页面工具栏 */
.page-toolbar { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.toolbar-title { font-size: 1.25rem; font-weight: 700; }
.toolbar-sub { color: var(--text-2); font-size: .84rem; margin-top: 3px; }
.toolbar-right { display: flex; gap: 8px; }

/* 房间卡片（盘点） */
.room-card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(168px, 1fr)); gap: 12px; }
.room-card { border: 1px solid var(--border); border-radius: var(--radius); padding: 14px; background: #fff; display: flex; flex-direction: column; gap: 6px; transition: all .15s; }
.room-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.room-card.done { background: #fafffa; }
.room-card-head { display: flex; align-items: center; justify-content: space-between; }
.room-card-head b { font-size: 1.1rem; }
.room-card-sub { color: var(--text-2); font-size: .8rem; margin-bottom: 4px; }

/* 配货 */
.rp-tip { font-size: .82rem; color: var(--text-2); margin-bottom: 12px; }
.rp-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 10px; margin-bottom: 14px; }
.rp-item { display: flex; align-items: center; justify-content: space-between; gap: 10px; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 10px 14px; background: #fafafa; }
.check-line { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.check-line input { width: 18px; height: 18px; accent-color: var(--primary); flex: none; }
.rp-qty { display: flex; align-items: center; gap: 6px; font-size: .82rem; color: var(--text-2); }
.rp-qty .input-sm { width: 72px; text-align: center; }

/* 库存页 */
.stock-head { align-items: flex-end; }
.stock-tip { display: flex; gap: 8px; flex-wrap: wrap; }
.save-bar { justify-content: flex-end; }
.detail-head { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 10px; margin-bottom: 14px; background: var(--gray-bg); border-radius: var(--radius-sm); padding: 12px 14px; font-size: .88rem; }
.filter-bar { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }

/* ============================================================
   登录页
   ============================================================ */
.login-body { min-height: 100vh; background: linear-gradient(135deg, #0c3d38 0%, #115e59 50%, #0e7490 100%); display: flex; align-items: center; justify-content: center; padding: 20px; overflow: hidden; position: relative; }
.login-wrap { width: 100%; max-width: 400px; position: relative; z-index: 2; }
.login-card {
  background: rgba(255,255,255,.97); border-radius: 20px; box-shadow: 0 24px 60px rgba(0,0,0,.35);
  padding: 36px 32px; backdrop-filter: blur(6px);
}
.login-logo { text-align: center; margin-bottom: 24px; }
.login-logo-icon { width: 64px; height: 64px; margin: 0 auto 14px; border-radius: 18px; background: linear-gradient(135deg, #2dd4bf, #0f766e); display: flex; align-items: center; justify-content: center; color: #fff; box-shadow: 0 8px 24px rgba(45,212,191,.4); }
.login-logo-icon .icon { width: 32px; height: 32px; }
.login-logo h1 { font-size: 1.35rem; font-weight: 700; color: var(--text); }
.login-logo p { color: var(--text-2); font-size: .85rem; margin-top: 4px; }
.login-form .input-icon { position: relative; }
.login-form .input-icon .icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--text-3); width: 18px; height: 18px; pointer-events: none; }
.login-form .input-icon input { padding-left: 40px; padding-top: 11px; padding-bottom: 11px; position: relative; z-index: 1; }
.login-foot { text-align: center; color: var(--text-3); font-size: .76rem; margin-top: 18px; line-height: 1.8; }
.login-deco { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .5; z-index: 1; pointer-events: none; }

/* 底部版权 */
.footer { text-align: center; padding: 18px 16px; color: var(--text-3); font-size: .78rem; line-height: 1.9; }
.footer-v { font-weight: 600; color: var(--text-2); }
.footer-company { font-size: .74rem; }

/* 自定义日期选择器 */
.dp-mask { position: fixed; inset: 0; z-index: 150; background: rgba(15,23,42,.35); display: none; }
.dp-mask.open { display: block; }
.dp-box { position: fixed; left: 50%; top: 50%; transform: translate(-50%,-50%); z-index: 151; background: #fff; border-radius: 16px; width: 320px; max-width: 90vw; box-shadow: 0 12px 40px rgba(0,0,0,.18); overflow: hidden; display: none; }
.dp-box.open { display: block; animation: modalIn .18s ease; }
.dp-head { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; border-bottom: 1px solid var(--border); }
.dp-title { font-size: 1rem; font-weight: 600; color: var(--text); }
.dp-head button { background: none; border: none; cursor: pointer; padding: 4px 12px; border-radius: 8px; color: var(--primary); font-size: 1.3rem; line-height: 1; }
.dp-head button:active { background: var(--primary-bg); }
.dp-week { display: grid; grid-template-columns: repeat(7,1fr); text-align: center; padding: 10px 10px 0; font-size: .78rem; color: var(--text-3); }
.dp-days { display: grid; grid-template-columns: repeat(7,1fr); gap: 3px; padding: 6px 10px 10px; }
.dp-day { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: .92rem; border-radius: 10px; cursor: pointer; color: var(--text); user-select: none; }
.dp-day:active { background: var(--gray-bg); }
.dp-day.other { color: var(--text-3); opacity: .35; }
.dp-day.today { border: 1.5px solid var(--primary); color: var(--primary); font-weight: 600; }
.dp-day.selected { background: var(--primary); color: #fff; font-weight: 600; }
.dp-foot { display: flex; justify-content: space-between; padding: 10px 16px; border-top: 1px solid var(--border); }
.dp-foot button { background: none; border: none; cursor: pointer; color: var(--primary); font-size: .88rem; padding: 6px 14px; border-radius: 8px; }
.dp-foot button:active { background: var(--primary-bg); }
input[data-dp="1"] { cursor: pointer; background: #fff; }

/* 联系我们弹窗 */
.contact-body { text-align: center; padding: 20px; }
.contact-tip { color: var(--text-2); font-size: .88rem; margin-bottom: 14px; }
.contact-qr { max-width: 220px; width: 100%; border-radius: 12px; box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.contact-phone { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--border); }
.contact-phone a { display: inline-flex; align-items: center; gap: 8px; color: var(--primary); font-size: 1.05rem; font-weight: 600; text-decoration: none; padding: 8px 20px; border-radius: 999px; background: var(--primary-bg); }
.contact-phone a:active { opacity: .8; }
.d1 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(45,212,191,.5), transparent 70%); top: -80px; right: -60px; }
.d2 { width: 260px; height: 260px; background: radial-gradient(circle, rgba(251,191,36,.35), transparent 70%); bottom: -60px; left: -80px; }
.d3 { width: 160px; height: 160px; background: radial-gradient(circle, rgba(255,255,255,.25), transparent 70%); top: 40%; left: 12%; }

/* ============================================================
   响应式：手机端
   ============================================================ */
@media (max-width: 900px) {
  .grid-2col { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root { --sidebar-w: 248px; }
  .menu-btn { display: inline-flex; }
  .sidebar { transform: translateX(-100%); box-shadow: none; }
  .sidebar.open { transform: translateX(0); box-shadow: var(--shadow-lg); }
  .sidebar-mask.show { display: block; }
  .main { margin-left: 0; }
  .content { padding: 14px 12px; }
  .topbar { padding: 0 12px; }
  .hide-xs { display: none !important; }
  .hide-sm { display: none !important; }

  /* 表格 → 卡片 */
  .data-table, .data-table tbody, .data-table tr, .data-table td { display: block; width: 100%; }
  .data-table thead { display: none; }
  .data-table tr { border: 1px solid var(--border); border-radius: 12px; margin-bottom: 10px; padding: 4px 6px; background: #fff; }
  .data-table td { display: flex; justify-content: space-between; align-items: center; gap: 12px; border-bottom: 1px dashed #eef0f2; padding: 9px 10px; font-size: .88rem; }
  .data-table td::before { content: attr(data-label); color: var(--text-2); font-size: .8rem; flex: none; }
  .data-table td.ta-r { justify-content: flex-end; }
  .data-table td.ta-r::before { display: none; }
  .data-table td.hide-sm { display: none; }
  .data-table tbody tr:hover { background: #fff; }
  .row-low td { background: #fffdf5; }

  .form-grid-2 { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .stat-card { padding: 12px; gap: 10px; }
  .stat-icon { width: 38px; height: 38px; }
  .stat-val { font-size: 1.2rem; }
  .tabs { width: 100%; }
  .tab { flex: 1; }
  .rp-list { grid-template-columns: 1fr; }
  .modal-card { max-height: 88vh; }
  .filter-bar .input-sm { flex: 1; min-width: 90px; }
  .room-card-grid { grid-template-columns: repeat(2, 1fr); }
  .modal-foot { padding: 12px 16px; }
  .detail-head { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 380px) {
  .room-card-grid { grid-template-columns: 1fr; }
  .topbar-user { display: none; }
}
