:root {
  --bg: #f6f7fb;
  --surface: #ffffff;
  --border: #e6e8f0;
  --text: #1a1d27;
  --text-2: #5b6070;
  --text-3: #9aa0b5;
  --primary: #4f46e5;
  --primary-2: #7c3aed;
  --primary-soft: #eef0ff;
  --primary-grad: linear-gradient(135deg, #4f46e5, #7c3aed);
  --success: #10b981;
  --danger: #ef4444;
  --radius: 16px;
  --shadow: 0 1px 2px rgba(20, 24, 40, .04), 0 8px 24px rgba(20, 24, 40, .06);
  --shadow-lg: 0 4px 12px rgba(20, 24, 40, .08), 0 20px 48px rgba(20, 24, 40, .12);
}

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

/* 콘텐츠 높이 변화로 스크롤바가 생겼다 사라질 때 화면이 좌우로 밀리지 않게 */
html { -webkit-text-size-adjust: 100%; overflow-y: scroll; }
@supports (scrollbar-gutter: stable) {
  html { overflow-y: auto; scrollbar-gutter: stable; }
}

body {
  font-family: "Pretendard Variable", Pretendard, -apple-system, system-ui, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

/* ===== Header ===== */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 880px; margin: 0 auto; padding: 0 20px;
  height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; }
.brand-logo { height: 22px; display: block; }
.brand-divider { width: 1px; height: 20px; background: var(--border); }
.brand-text { font-weight: 800; font-size: 16px; letter-spacing: -.02em; color: var(--text); padding-top: 1px; white-space: nowrap; }
.nav { display: flex; gap: 4px; background: #eef0f6; padding: 4px; border-radius: 12px; }
.nav-btn {
  border: 0; background: transparent; cursor: pointer;
  font: inherit; font-size: 13.5px; font-weight: 600; color: var(--text-2);
  padding: 7px 14px; border-radius: 9px; transition: all .18s;
  white-space: nowrap;
}
.nav-btn.active { background: #fff; color: var(--text); box-shadow: 0 1px 4px rgba(20,24,40,.1); }

/* ===== Layout ===== */
.main { flex: 1; width: 100%; max-width: 880px; margin: 0 auto; padding: 28px 20px 60px; }
.hidden { display: none !important; }

/* ===== Steps ===== */
.steps { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 26px; }
.step { display: flex; align-items: center; gap: 8px; }
.step-dot {
  width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 13px; font-weight: 700;
  background: #e8eaf2; color: var(--text-3);
  transition: all .25s;
}
.step-label { font-size: 13px; font-weight: 600; color: var(--text-3); transition: color .25s; }
.step-line { width: 32px; height: 2px; background: #e2e4ee; border-radius: 2px; }
.step.active .step-dot { background: var(--primary-grad); color: #fff; box-shadow: 0 3px 10px rgba(79,70,229,.4); }
.step.active .step-label { color: var(--text); }
.step.done .step-dot { background: var(--primary-soft); color: var(--primary); }
.step.done .step-label { color: var(--text-2); }

/* ===== Panel ===== */
.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
  animation: rise .35s cubic-bezier(.2,.8,.25,1);
}
@keyframes rise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.panel-title { font-size: 22px; font-weight: 800; letter-spacing: -.02em; }
.panel-title.center { text-align: center; }
.panel-desc { color: var(--text-2); font-size: 14px; margin-top: 6px; margin-bottom: 24px; }
.panel-desc.center { text-align: center; margin-bottom: 0; }
.panel-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; }

/* ===== Buttons ===== */
.btn {
  border: 0; cursor: pointer; font: inherit; font-weight: 700; font-size: 15px;
  padding: 12px 24px; border-radius: 12px; transition: all .18s;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  white-space: nowrap; flex-shrink: 0;
}
.btn:disabled { opacity: .4; cursor: not-allowed; }
.btn-primary {
  background: var(--primary-grad); color: #fff;
  box-shadow: 0 4px 14px rgba(79,70,229,.35);
}
.btn-primary:not(:disabled):hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(79,70,229,.45); }
.btn-primary:not(:disabled):active { transform: translateY(0); }
.btn-ghost { background: transparent; color: var(--text-2); }
.btn-ghost:hover { background: #f1f2f8; color: var(--text); }
.btn-outline { background: #fff; color: var(--text-2); border: 1px solid var(--border); box-shadow: 0 1px 2px rgba(20,24,40,.04); }
.btn-outline:not(:disabled):hover { border-color: var(--primary); color: var(--primary); }
.btn-sm { padding: 8px 14px; font-size: 13px; border-radius: 9px; }
.arrow { font-weight: 400; }

/* ===== Fields ===== */
.field { margin-bottom: 20px; flex: 1; }
.field-label { display: block; font-size: 13px; font-weight: 700; color: var(--text-2); margin-bottom: 8px; }
.field-row { display: flex; gap: 16px; }
.input {
  width: 100%; font: inherit; font-size: 15px;
  padding: 12px 14px; border-radius: 12px;
  border: 1.5px solid var(--border); background: #fbfbfe;
  /* 'all'을 쓰면 select 화살표(background-position)까지 애니메이션되므로 속성을 한정 */
  transition: border-color .18s, background-color .18s, box-shadow .18s, color .18s;
  color: var(--text);
}
.input:focus { outline: none; border-color: var(--primary); background: #fff; box-shadow: 0 0 0 4px rgba(79,70,229,.12); }
.input::placeholder { color: var(--text-3); }

/* ===== Company select ===== */
.select {
  appearance: none; -webkit-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="8" viewBox="0 0 12 8"><path d="M1 1l5 5 5-5" stroke="%235b6070" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 38px; cursor: pointer;
}
.select:invalid, .select option[value=""] { color: var(--text-3); }

/* ===== Consent ===== */
.consent-box {
  border: 1.5px solid var(--border); border-radius: 12px;
  padding: 14px 16px; background: #fbfbfe; margin-top: 4px;
}
.consent-row { display: flex; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 600; cursor: pointer; }
.consent-row input { width: 18px; height: 18px; accent-color: var(--primary); flex-shrink: 0; }
.consent-row em { color: var(--primary); font-style: normal; font-size: 12.5px; }
.consent-details { margin-top: 10px; }
.consent-details summary { font-size: 13px; color: var(--text-2); cursor: pointer; user-select: none; }
.consent-details ul { margin: 8px 0 0 18px; font-size: 13px; color: var(--text-2); line-height: 1.75; }
.consent-details b { color: var(--text); font-weight: 700; }

/* ===== Room grid ===== */
.room-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 14px; }
.room-card {
  border: 1.5px solid var(--border); border-radius: 14px;
  padding: 20px; cursor: pointer; background: #fbfbfe;
  transition: all .18s; text-align: left; font: inherit;
  position: relative; overflow: hidden;
}
.room-card:hover { border-color: #c9cdf0; background: #fff; transform: translateY(-2px); box-shadow: var(--shadow); }
.room-card.selected { border-color: var(--primary); background: #fff; box-shadow: 0 0 0 3px rgba(79,70,229,.12), var(--shadow); }
.room-card.selected::after {
  content: '✓'; position: absolute; top: 14px; right: 12px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--primary-grad); color: #fff;
  display: grid; place-items: center; font-size: 11px; font-weight: 700;
}
.room-head {
  display: flex; align-items: center; gap: 4px; flex-wrap: nowrap;
  padding-right: 20px; /* 선택 체크 아이콘 자리 */
  min-width: 0;
}
.room-floor {
  display: inline-block; font-size: 10.5px; font-weight: 700;
  color: var(--primary); background: var(--primary-soft);
  padding: 2px 7px; border-radius: 99px; flex-shrink: 0; white-space: nowrap;
}
.room-approval {
  display: inline-block; font-size: 10.5px; font-weight: 700;
  color: #b45309; background: #fef3c7;
  padding: 2px 7px; border-radius: 99px; flex-shrink: 0; white-space: nowrap;
}
.room-name {
  font-size: 15.5px; font-weight: 800; letter-spacing: -.01em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0;
}
.room-cap { font-size: 13px; color: var(--text-2); margin-top: 5px; }

/* ===== Calendar ===== */
.calendar-card { max-width: 460px; margin: 0 auto; }
.calendar-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.cal-title { font-size: 17px; font-weight: 800; letter-spacing: -.01em; }
.cal-nav {
  width: 36px; height: 36px; border-radius: 10px;
  border: 1px solid var(--border); background: #fff;
  font-size: 20px; color: var(--text-2); cursor: pointer;
  display: grid; place-items: center; transition: all .15s;
  line-height: 1;
}
.cal-nav:hover:not(:disabled) { border-color: #c9cdf0; color: var(--text); }
.cal-nav:disabled { opacity: .35; cursor: not-allowed; }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-weekday { text-align: center; font-size: 12px; font-weight: 700; color: var(--text-3); padding: 6px 0; }
.cal-weekday.sun { color: #f87171; }
.cal-day {
  aspect-ratio: 1; border-radius: 11px; border: 1.5px solid transparent;
  background: transparent; font: inherit; font-size: 14.5px; font-weight: 600;
  color: var(--text); cursor: pointer; transition: all .13s;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  position: relative;
}
@media (hover: hover) {
  .cal-day:hover:not(:disabled) { background: var(--primary-soft); }
}
.cal-day:disabled { color: #cdd1e0; cursor: not-allowed; }
.cal-day.today { border-color: var(--border); }
/* 선택 상태는 호버보다 항상 우선 — 모바일 끈적 호버/데스크톱 오버 시에도 선명하게 */
.cal-day.selected, .cal-day.selected:hover {
  background: var(--primary-grad); color: #fff;
  box-shadow: 0 4px 12px rgba(79,70,229,.4);
}
.cal-day .dot { position: absolute; bottom: 6px; }
.dot { width: 5px; height: 5px; border-radius: 50%; display: inline-block; }
.dot-free { background: var(--success); }
.dot-mid { background: #f59e0b; }
.dot-busy { background: var(--danger); }
.cal-day.selected .dot { background: rgba(255,255,255,.9); }
.cal-legend { display: flex; gap: 16px; justify-content: center; margin-top: 14px; font-size: 12px; color: var(--text-2); }
.cal-legend span { display: inline-flex; align-items: center; gap: 5px; }

/* ===== Timeline ===== */
.timeline-card {
  background: #fafbfe; border: 1px solid var(--border);
  border-radius: 12px; padding: 16px; margin-bottom: 22px;
}
.timeline-title { font-size: 12.5px; font-weight: 700; color: var(--text-2); margin-bottom: 10px; }
.timeline {
  position: relative; height: 34px;
  background: repeating-linear-gradient(to right, #eef0f6 0, #eef0f6 1px, transparent 1px, transparent calc(100% / 12));
  background-color: #fff;
  border: 1px solid var(--border); border-radius: 8px;
  /* overflow hidden 금지: 짧은 '내 예약' 블록의 라벨이 밖으로 보여야 함 */
}
.timeline-block {
  position: absolute; top: 4px; bottom: 4px;
  background: linear-gradient(135deg, #c7cbf5, #d8c9f0);
  border-radius: 5px;
  font-size: 10.5px; font-weight: 700; color: #4338ca;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; white-space: nowrap; padding: 0 4px;
}
.timeline-block.mine {
  background: var(--primary-grad); color: #fff;
  overflow: visible; z-index: 2; /* 짧은 예약이어도 '내 예약' 라벨이 블록 밖으로 보이게 */
}
.timeline-block .tl-co {
  display: inline-block; max-width: 100%;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.timeline-block .tl-label {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}
/* 블록이 라벨보다 좁으면: 블록 위 보라색 말풍선으로 표시 */
.timeline-block.mine.label-out .tl-label {
  top: auto; bottom: calc(100% + 5px); transform: translateX(-50%);
  background: var(--primary-grad); color: #fff;
  padding: 2px 8px; border-radius: 99px;
  box-shadow: 0 2px 8px rgba(79, 70, 229, .35);
}
.timeline-block.mine.label-out .tl-label::after {
  content: ''; position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent; border-top-color: #6d28d9;
}
.timeline-card .timeline { margin-top: 20px; } /* 말풍선이 뜰 공간 확보 (예약 단계에서만) */
.timeline-block.pending {
  background: repeating-linear-gradient(45deg, #fef3c7 0 6px, #fde9a8 6px 12px);
  color: #92400e; border: 1px dashed #f59e0b;
}
.tag-pending {
  display: inline-block; font-size: 11px; font-weight: 700;
  color: #b45309; background: #fef3c7;
  padding: 2px 8px; border-radius: 99px; vertical-align: 1px;
}
.tag-confirmed {
  display: inline-block; font-size: 11px; font-weight: 700;
  color: #047857; background: #d1fae5;
  padding: 2px 8px; border-radius: 99px; vertical-align: 1px;
}
.tag-done {
  display: inline-block; font-size: 11px; font-weight: 700;
  color: #6b7280; background: #eceef3;
  padding: 2px 8px; border-radius: 99px; vertical-align: 1px;
}
.more-btn { width: 100%; margin-top: 6px; font-size: 14px; padding: 11px; }
.timeline-hours { display: flex; justify-content: space-between; font-size: 10.5px; color: var(--text-3); margin-top: 5px; padding: 0 1px; }

/* ===== Time grid ===== */
.time-section { margin-bottom: 20px; }
.time-section-title { font-size: 13px; font-weight: 700; color: var(--text-2); margin-bottom: 10px; }
.time-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(86px, 1fr)); gap: 8px; }
.time-chip {
  border: 1.5px solid var(--border); background: #fff;
  border-radius: 10px; padding: 10px 4px;
  font: inherit; font-size: 14px; font-weight: 600; color: var(--text);
  cursor: pointer; transition: all .13s; text-align: center;
  font-variant-numeric: tabular-nums;
}
@media (hover: hover) {
  .time-chip:hover:not(:disabled) { border-color: var(--primary); color: var(--primary); }
}
.time-chip:disabled { background: #f3f4f9; color: #c3c7d9; cursor: not-allowed; text-decoration: line-through; }
.time-chip.selected, .time-chip.selected:hover {
  background: var(--primary-grad); border-color: transparent; color: #fff;
  box-shadow: 0 3px 10px rgba(79,70,229,.35);
}

/* ===== 예약 실패 안내 ===== */
.submit-error {
  border: 1.5px solid #fca5a5; background: #fef2f2;
  border-radius: 12px; padding: 14px 16px; margin-bottom: 4px;
  animation: rise .3s cubic-bezier(.2,.8,.25,1);
}
.submit-error b { color: #dc2626; font-size: 14.5px; }
.submit-error p { color: #7f1d1d; font-size: 13.5px; margin: 6px 0; line-height: 1.6; }
.submit-error small { color: #9aa0b5; font-size: 12px; }

/* ===== Done ===== */
.done-wrap { display: flex; flex-direction: column; align-items: center; padding: 16px 0; }
.done-check {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--primary-grad); color: #fff;
  display: grid; place-items: center; font-size: 30px; font-weight: 700;
  box-shadow: 0 8px 28px rgba(79,70,229,.4);
  margin-bottom: 18px;
  animation: pop .45s cubic-bezier(.2,1.4,.4,1);
}
@keyframes pop { from { transform: scale(.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.summary-card {
  width: 100%; max-width: 420px; margin-top: 22px;
  border: 1px solid var(--border); border-radius: 14px;
  background: #fafbfe; padding: 20px 24px;
}
.summary-row { display: flex; justify-content: space-between; padding: 7px 0; font-size: 14.5px; }
.summary-row .k { color: var(--text-2); font-weight: 500; }
.summary-row .v { font-weight: 700; text-align: right; }
.done-actions { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-top: 26px; }

/* ===== Status board ===== */
.status-head { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; margin-bottom: 22px; }
.date-nav { display: flex; align-items: center; gap: 8px; }
.date-input { width: 150px; padding: 8px 10px; font-size: 14px; }
.today-badge {
  font-size: 11.5px; font-weight: 700; color: var(--primary);
  background: var(--primary-soft); border-radius: 99px; padding: 3px 9px;
  white-space: nowrap; align-self: center; vertical-align: middle;
}
/* 데스크톱: 배지가 사라져도 자리를 유지해 날짜 내비가 좌우로 밀리지 않게 */
.today-badge-desktop.off { visibility: hidden; }
.today-badge-mobile { display: none; }
.status-room { margin-bottom: 20px; }
.status-room-head { display: flex; align-items: baseline; gap: 8px; margin-bottom: 8px; }
.status-room-name { font-size: 14.5px; font-weight: 800; }
.status-room-cap { font-size: 12px; color: var(--text-3); }
.status-empty-day { color: var(--text-3); font-size: 14px; text-align: center; padding: 30px 0; }
.status-items { display: flex; flex-direction: column; gap: 6px; margin-top: 8px; }
.status-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--text-2);
  background: #fafbfe; border: 1px solid var(--border);
  border-radius: 9px; padding: 7px 12px;
}
.status-item .time { font-weight: 700; color: var(--text); font-variant-numeric: tabular-nums; }
.status-item .co { font-weight: 600; color: var(--primary); }

/* ===== My reservations ===== */
.my-search { display: flex; gap: 10px; max-width: 400px; margin-bottom: 24px; }
.my-search .input { flex: 1; min-width: 0; padding: 10px 14px; font-size: 14.5px; }
.my-search .btn { padding: 10px 20px; font-size: 14px; }
.my-item {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  border: 1px solid var(--border); border-radius: 13px;
  padding: 16px 20px; margin-bottom: 10px; background: #fbfbfe;
}
.my-item.past { opacity: .55; }
.my-item-info { display: flex; flex-direction: column; gap: 2px; }
.my-item-room { font-weight: 800; font-size: 15px; }
.my-item-time { font-size: 13.5px; color: var(--text-2); font-variant-numeric: tabular-nums; }
.btn-cancel {
  border: 1.5px solid #fecaca; background: #fff; color: var(--danger);
  font: inherit; font-size: 13px; font-weight: 700;
  padding: 8px 14px; border-radius: 9px; cursor: pointer; transition: all .15s;
  flex-shrink: 0;
}
.btn-cancel:hover { background: #fef2f2; }
.my-empty { color: var(--text-3); font-size: 14px; text-align: center; padding: 30px 0; }

/* ===== Bottom nav (mobile) ===== */
.bottom-nav { display: none; }

/* ===== 개인정보처리방침 팝업 ===== */
.modal {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(20, 24, 40, .45);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.modal-box {
  background: #fff; border-radius: 16px;
  width: 100%; max-width: 720px; height: min(82vh, 760px);
  display: flex; flex-direction: column; overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: rise .25s cubic-bezier(.2,.8,.25,1);
}
.modal-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.modal-close {
  border: 0; background: #f1f2f8; color: var(--text-2);
  width: 30px; height: 30px; border-radius: 8px;
  font-size: 14px; cursor: pointer;
}
.modal-close:hover { background: #e6e8f0; color: var(--text); }
.modal-box iframe { flex: 1; border: 0; width: 100%; }
@media (max-width: 640px) {
  .modal { padding: 0; }
  .modal-box { max-width: none; height: 100%; border-radius: 0; }
}

/* ===== Toast ===== */
.toast {
  position: fixed; bottom: 28px; left: 50%;
  transform: translate(-50%, 20px);
  background: #23263a; color: #fff;
  padding: 13px 22px; border-radius: 12px;
  font-size: 14px; font-weight: 600;
  box-shadow: var(--shadow-lg);
  opacity: 0; pointer-events: none;
  transition: all .3s cubic-bezier(.2,.8,.25,1);
  z-index: 100; max-width: calc(100vw - 40px); text-align: center;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.toast.error { background: #dc2626; }

/* ===== Footer ===== */
.footer { text-align: center; font-size: 12.5px; color: var(--text-3); padding: 24px 20px 32px; }

/* ===== Mobile ===== */
@media (max-width: 640px) {
  .header-inner { padding: 0 14px; justify-content: center; }
  .brand-logo { height: 20px; }
  .nav { display: none; }

  .bottom-nav {
    display: flex;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(14px);
    border-top: 1px solid var(--border);
    padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
    box-shadow: 0 -4px 16px rgba(20, 24, 40, .05);
  }
  .bottom-nav-btn {
    flex: 1; border: 0; background: transparent; cursor: pointer;
    display: flex; flex-direction: column; align-items: center; gap: 3px;
    font: inherit; font-size: 11px; font-weight: 600; color: var(--text-3);
    padding: 4px 0; border-radius: 10px; transition: color .18s;
  }
  .bottom-nav-btn svg { width: 22px; height: 22px; }
  .bottom-nav-btn.active { color: var(--primary); }

  .main { padding-bottom: 96px; }
  .footer { padding-bottom: 92px; }
  .toast { bottom: 92px; }

  /* 이 날의 예약 현황: 박스를 없애고 타임라인을 좌우로 확장해 칸 크기 확보 */
  .timeline-card {
    background: none; border: 0; padding: 0;
    margin: 0 -6px 20px;
  }
  .timeline { height: 38px; }
  .timeline-block { font-size: 10px; }

  /* 예약 현황 날짜 내비: 한 줄에 딱 맞게 */
  .status-head { flex-direction: column; align-items: stretch; }
  .date-nav { width: 100%; }
  .date-input { flex: 1; min-width: 0; width: auto; }
  /* 모바일: 배지는 제목 옆에 표시 */
  .today-badge-desktop { display: none; }
  .today-badge-mobile { display: inline-block; }
  .today-badge-mobile.off { display: none; }
  .main { padding: 20px 14px 48px; }
  .panel { padding: 22px 18px; }
  .panel-title { font-size: 19px; }
  .field-row { flex-direction: column; gap: 0; }
  .step-label { display: none; }
  .step-line { width: 18px; }
  .room-grid { grid-template-columns: 1fr; gap: 10px; }
  .room-card { padding: 14px 16px; }
  .room-name { font-size: 15.5px; }
  .time-grid { grid-template-columns: repeat(4, 1fr); }
  .done-actions { flex-direction: column; width: 100%; }
  .done-actions .btn { justify-content: center; }
}
