/* 글로스터 호텔 수분양자 예약 — gloucestersoyou.com 디자인 시스템 */
:root {
  --ink: #171717;          /* 기본 텍스트 */
  --brown: #231815;        /* 브랜드 다크브라운 (버튼) */
  --gold: #C2984E;         /* 브랜드 골드 (포인트) */
  --bg: #f7f8f9;           /* 페이지 배경 */
  --card: #ffffff;
  --line: #ececee;
  --muted: #8b8f94;
  --green: #16a34a;
  --green-bg: #e7f6ec;
  --red: #dc2626;
  --red-bg: #fdecea;
  --amber: #a16207;
  --amber-bg: #fdf3d7;
  --purple: #5b3fa8;
  --purple-bg: #ede9f8;
  --shadow: 0 1px 3px rgba(0,0,0,.07), 0 1px 2px -1px rgba(0,0,0,.07);
  --radius: 16px;
}

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

body {
  font-family: Arial, Helvetica, 'Apple SD Gothic Neo', 'Malgun Gothic', 'Noto Sans KR', sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.hidden { display: none !important; }

/* ---------- 로그인 ---------- */
.login-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #fff url('img/login_bg.webp') center/cover no-repeat;
}
.login-card {
  background: var(--card);
  border-radius: 24px;
  padding: 48px 36px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 10px 40px rgba(35, 24, 21, .18);
  text-align: center;
}
.login-logo { width: 120px; margin: 0 auto 18px; display: block; }
.login-card h1 { font-size: 28px; color: var(--brown); font-weight: 700; letter-spacing: -0.5px; }
.login-sub { color: var(--muted); font-size: 14px; margin: 12px 0 32px; line-height: 1.7; }
.login-card form { text-align: left; }
.login-card label { display: block; font-size: 14px; margin-bottom: 18px; font-weight: 600; color: var(--ink); }
.login-card input {
  width: 100%; margin-top: 8px; padding: 14px 16px;
  border: 1px solid var(--gold); border-radius: 12px; font-size: 16px;
  background: #fdfcfa; outline: none;
}
.login-card input:focus { border-width: 2px; padding: 13px 15px; }
.login-card .btn-block { margin-top: 6px; }
.login-help { margin-top: 22px; font-size: 13px; color: var(--muted); }
.login-copy { margin-top: 26px; font-size: 12px; color: var(--muted); letter-spacing: 1px; }

/* ---------- 공통 요소 ---------- */
.btn {
  border: none; border-radius: 12px; padding: 13px 22px;
  font-size: 15px; font-weight: 700; cursor: pointer;
  background: #f0f0f2; color: var(--ink);
  transition: filter .15s;
  font-family: inherit;
}
.btn:hover { filter: brightness(.96); }
.btn-primary { background: var(--brown); color: var(--gold); }
.btn-danger { background: var(--red); color: #fff; }
.btn-sm { padding: 8px 14px; font-size: 13px; border-radius: 10px; }
.btn-block { width: 100%; padding: 15px; font-size: 16px; }

input, select, textarea {
  padding: 12px 14px; border: 1px solid var(--line); border-radius: 12px;
  font-size: 15px; font-family: inherit; background: #fff; color: var(--ink);
}
textarea { width: 100%; resize: vertical; margin: 8px 0; }

.error-msg { color: var(--red); font-size: 13px; margin-top: 12px; min-height: 20px; text-align: center; }
.hint { font-size: 13px; color: var(--muted); margin: 8px 0; line-height: 1.7; }
code { background: #f0f0f2; padding: 2px 7px; border-radius: 6px; font-size: 12px; }

/* ---------- 레이아웃 ---------- */
.container {
  max-width: 900px; margin: 0 auto;
  padding: 0 20px 100px; /* 하단 탭바 여백 */
}
.sec-title { font-size: 15px; font-weight: 700; margin: 36px 0 12px; color: var(--ink); }
h3 { font-size: 14px; margin: 4px 0 16px; font-weight: 600; }

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}

/* ---------- 서브페이지 헤더 ---------- */
.page-head {
  display: flex; align-items: center; justify-content: center;
  position: relative; height: 58px;
  margin: 0 -20px 20px; padding: 0 20px;
  background: var(--card); border-bottom: 1px solid var(--line);
}
.page-title { font-size: 16px; font-weight: 700; }
.back-btn {
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer; padding: 8px; color: var(--ink);
}
.back-btn svg { width: 22px; height: 22px; display: block; }

/* ---------- 하단 탭바 ---------- */
.tabbar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 20;
  background: var(--card); border-top: 1px solid var(--line);
  display: flex; justify-content: space-around;
  padding: 8px 0 max(8px, env(safe-area-inset-bottom));
}
.tab-item {
  flex: 1; max-width: 140px;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  background: none; border: none; cursor: pointer;
  color: #9aa0a6; font-family: inherit; padding: 4px 0;
}
.tab-item svg { width: 22px; height: 22px; }
.tab-item span { font-size: 10px; font-weight: 500; letter-spacing: -0.2px; }
.tab-item.active { color: var(--brown); }
.tab-item.active span { font-weight: 700; }

/* ---------- 홈: 로고 + 대시보드 ---------- */
.home-logo { text-align: center; padding: 40px 0 24px; }
.home-logo img { width: 140px; }

.greet { font-size: 14px; color: var(--muted); margin: 8px 4px 24px; }
.greet-name { font-size: 24px; font-weight: 600; color: var(--ink); margin-top: 4px; letter-spacing: -0.5px; }

.dash-photo {
  width: 100%; height: 160px; border-radius: var(--radius);
  background-size: cover; background-position: center;
  margin-bottom: 16px; box-shadow: var(--shadow);
}

.room-line {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 20px;
}
.ic-sq {
  width: 46px; height: 46px; border-radius: 12px; flex: none;
  background: #f0f0f2; color: var(--muted);
  display: flex; align-items: center; justify-content: center;
}
.ic-sq svg { width: 23px; height: 23px; }
.room-line-title { font-weight: 600; font-size: 15px; flex: 1; letter-spacing: -0.3px; }

.pill {
  display: inline-block; padding: 2px 10px; border-radius: 999px;
  font-size: 12px; font-weight: 600; white-space: nowrap;
}
.pill-green { background: var(--green-bg); color: var(--green); }
.pill-gold { background: #f6efe2; color: #8a6520; }

.stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.stat-card { margin-bottom: 14px; padding: 18px 20px; }
.stat-label { font-size: 13px; color: var(--muted); font-weight: 500; }
.stat-value { font-size: 20px; font-weight: 700; margin-top: 5px; letter-spacing: -0.3px; }
.stat-value small { font-size: 13px; font-weight: 600; color: var(--muted); letter-spacing: 0; }
.stat-value.ok { color: var(--green); }
.stat-value.warn { color: var(--amber); }

/* ---------- 검색/필터 ---------- */
.search-grid, .filter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px; align-items: end;
}
/* 예약 검색: 지점명이 길어 지점 칸을 넓게 */
.search-grid {
  grid-template-columns: minmax(215px, 1.6fr) 1fr 1fr minmax(76px, .6fr) auto;
}
.search-grid select, .filter-grid select { width: 100%; min-width: 0; }
.search-grid .btn, .filter-grid .btn { white-space: nowrap; }
.search-grid label, .filter-grid label, .form-col label {
  display: flex; flex-direction: column; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--muted);
}
.form-col { display: flex; flex-direction: column; gap: 16px; max-width: 380px; }
.branch-info { font-size: 13px; color: var(--muted); margin-top: 14px; }
.search-card { padding: 24px 22px; }

/* ---------- 객실 카드 ---------- */
.room-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 14px; }
.room-card {
  background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 22px; display: flex; flex-direction: column; gap: 10px;
}
.room-card.unavailable { opacity: .55; }
.room-name { font-size: 16px; font-weight: 700; letter-spacing: -0.3px; }
.room-type { display: inline-block; background: #f6efe2; color: #8a6520; font-size: 12px; font-weight: 700; padding: 3px 13px; border-radius: 999px; }
.room-price { font-size: 18px; font-weight: 700; color: var(--brown); }
.room-price small { font-size: 12px; color: var(--muted); font-weight: 400; }
.room-meta { font-size: 13px; color: var(--muted); }
.room-card .btn { margin-top: 4px; }
.sold-out { color: var(--red); font-weight: 700; font-size: 14px; }

/* ---------- 예약 목록 ---------- */
.resv-item {
  background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 20px 22px; margin-bottom: 14px;
  display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap;
}
.resv-title { font-weight: 700; font-size: 16px; letter-spacing: -0.3px; }
.resv-sub { font-size: 13px; color: var(--muted); margin-top: 2px; }
.badge { display: inline-block; padding: 3px 12px; border-radius: 999px; font-size: 12px; font-weight: 700; }
.badge-ok { background: var(--green-bg); color: var(--green); }
.badge-cancel { background: var(--red-bg); color: var(--red); }
.badge-free { background: var(--green-bg); color: var(--green); }
.badge-onsite { background: var(--amber-bg); color: var(--amber); }
.badge-wait { background: var(--amber-bg); color: var(--amber); }
.badge-upgrade { background: var(--purple-bg); color: var(--purple); }
.row-pending { background: #fffbef; }

/* ---------- 공지사항 ---------- */
.sec-head { display: flex; align-items: center; justify-content: space-between; margin-top: 36px; margin-bottom: 12px; }
.sec-head + .card { margin-top: 0; }
.sec-head .sec-title { margin: 0; }
.link-btn {
  background: none; border: none; cursor: pointer; font-family: inherit;
  font-size: 13px; color: var(--muted); font-weight: 600; padding: 6px;
}
.notice-row {
  padding: 15px 0; border-bottom: 1px solid var(--line); cursor: pointer;
}
.notice-row:last-child { border-bottom: none; }
.notice-title { font-size: 15px; font-weight: 700; letter-spacing: -0.2px; }
.notice-meta { font-size: 12px; color: var(--muted); margin-top: 4px; display: flex; align-items: center; gap: 7px; }
.notice-meta .pill { font-size: 11px; padding: 2px 11px; }
.notice-card { padding: 20px 22px; }
.notice-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; cursor: pointer; }
.notice-row-main { flex: 1; min-width: 0; }
.notice-body {
  margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line);
  font-size: 14px; line-height: 1.8; color: var(--ink); word-break: break-word;
}

/* ---------- 마이페이지 ---------- */
.profile-hero {
  background: #6b7075; color: #fff;
  border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 26px 24px; margin-bottom: 16px;
}
.ph-top { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.avatar {
  width: 56px; height: 56px; border-radius: 50%; flex: none;
  background: rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
}
.avatar svg { width: 28px; height: 28px; color: #fff; }
.ph-name { font-size: 21px; font-weight: 700; letter-spacing: -0.3px; }
.ph-sub { font-size: 13px; color: rgba(255,255,255,.8); margin-top: 2px; }
.ph-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ph-stat { background: rgba(255,255,255,.14); border-radius: 12px; padding: 13px 16px; }
.ph-stat-label { font-size: 11px; color: rgba(255,255,255,.75); font-weight: 600; }
.ph-stat-val { font-size: 17px; font-weight: 700; margin-top: 3px; }

.list-card { padding: 6px 22px; }
.info-row {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid var(--line);
}
.info-row:last-child { border-bottom: none; }
.info-row .ic-sq { width: 40px; height: 40px; }
.info-label { font-size: 12px; color: var(--muted); font-weight: 600; }
.info-value { font-size: 15px; font-weight: 700; margin-top: 2px; }

.logout-card {
  width: 100%; background: var(--card); border: none; cursor: pointer;
  border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 17px; margin: 20px 0 10px;
  color: var(--red); font-size: 15px; font-weight: 700; font-family: inherit;
}
.app-version { text-align: center; font-size: 12px; color: var(--muted); margin: 18px 0 8px; line-height: 1.7; }

/* ---------- 관리자 ---------- */
.tabs { display: flex; gap: 8px; margin-bottom: 18px; flex-wrap: wrap; }
.tab-btn {
  border: 1px solid var(--line); background: var(--card); border-radius: 999px;
  padding: 9px 18px; font-size: 13px; font-weight: 600; cursor: pointer; font-family: inherit;
}
.tab-btn.active { background: var(--brown); color: var(--gold); border-color: var(--brown); }

.table-wrap { overflow-x: auto; background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); }
table { width: 100%; border-collapse: collapse; font-size: 13px; min-width: 640px; }
th, td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--line); white-space: nowrap; }
th { background: #fafafa; font-size: 12px; color: var(--muted); font-weight: 700; }
tr:last-child td { border-bottom: none; }

/* 지점 정보: 항목을 세로로 한 줄씩, 입력 내용을 넓게 */
.branch-edit {
  display: flex; flex-direction: column; gap: 12px;
  padding: 20px 0; border-bottom: 1px dashed var(--line);
}
.branch-edit:first-child { padding-top: 6px; }
.branch-edit:last-child { border-bottom: none; padding-bottom: 6px; }
.branch-edit label { display: flex; flex-direction: column; gap: 6px; font-size: 12px; color: var(--muted); font-weight: 600; }
.branch-edit input { width: 100%; }
.branch-edit .be-save { align-self: flex-end; padding: 9px 22px; }
.fee-input { width: 110px; }
.month-nav { display: flex; align-items: center; gap: 6px; }
.month-nav input { flex: 1; min-width: 0; }

/* 아코디언 (지점별 접기/펼치기) */
.acc { border-bottom: 1px solid var(--line); }
#adm-branch-list .acc:last-child { border-bottom: none; }
.acc-head {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  background: none; border: none; cursor: pointer; font-family: inherit;
  padding: 16px 4px; font-size: 15px; font-weight: 700; color: var(--ink); text-align: left;
}
.acc-head small { font-size: 12px; color: var(--muted); font-weight: 500; }
.acc-head svg { width: 18px; height: 18px; color: var(--muted); flex: none; transition: transform .15s; }
.acc-head.open svg { transform: rotate(180deg); }
.acc-body { padding-bottom: 18px; }
.acc .branch-edit { border-bottom: none; padding: 4px 4px 18px; }

/* 객실 목록용 아코디언: 헤더를 카드처럼 */
.acc-rooms { border-bottom: none; margin-bottom: 12px; }
.acc-rooms > .acc-head {
  background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 17px 20px;
}
.acc-rooms > .acc-head.open { border-radius: var(--radius) var(--radius) 0 0; }
.acc-rooms > .acc-body { padding: 12px 0 0; }

/* 객실 관리 카드 (가로 스크롤 없는 목록) */
.sec-sub { font-size: 14px; font-weight: 700; color: var(--muted); margin: 22px 0 10px; }
.sec-sub:first-child { margin-top: 0; }
.room-admin {
  background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 18px 20px; margin-bottom: 12px;
}
.ra-head { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.ra-name { font-size: 15px; font-weight: 700; }
.ra-meta { font-size: 13px; color: var(--muted); margin: 6px 0 12px; }
.ra-actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* ---------- 객실 캘린더 (관리자) ---------- */
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.cal-head { text-align: center; font-size: 12px; font-weight: 700; color: var(--muted); padding: 8px 0; }
.cal-cell {
  border: 1px solid var(--line); border-radius: 10px;
  padding: 8px; min-height: 76px; cursor: pointer;
  background: #fff; font-size: 12px;
  display: flex; flex-direction: column; gap: 2px;
}
.cal-cell:hover { background: #faf7f0; }
.cal-day { font-weight: 700; font-size: 14px; }
.cal-sun { color: var(--red); }
.cal-price { color: var(--brown); font-weight: 700; }
.cal-count { color: var(--muted); }
.cal-count small { font-size: 10px; }
.cal-override { border: 2px solid var(--gold); }
.cal-past { opacity: .45; }
.cal-full { background: var(--red-bg); }
.cal-full .cal-count { color: var(--red); font-weight: 700; }
.cal-selected { background: #f6efe2 !important; border-color: var(--gold); }
.cal-empty { min-height: 76px; }

/* ---------- 예약 달력 + 객실 목록 레이아웃 ----------
   기본: 달력이 전체 폭 사용 / 객실 검색 결과가 있으면(has-rooms) 좌우 분할 */
.book-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}
.book-layout.has-rooms { grid-template-columns: 11fr 9fr; }
/* 달력이 전체 폭일 때는 칸도 크게 */
.book-layout:not(.has-rooms) .mcal-cell { min-height: 86px; font-size: 13px; padding: 9px 10px; }
.book-layout:not(.has-rooms) .mcal-day { font-size: 16px; }
.book-layout:not(.has-rooms) .mcal-grid { gap: 6px; }
.book-rooms .sec-title { margin-top: 0; }
.book-layout .room-list { grid-template-columns: 1fr; }

.mcal-card { padding: 24px 22px; }
.mcal-nav {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  margin-bottom: 14px; font-size: 17px;
}
.mcal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.mcal-head { text-align: center; font-size: 12px; font-weight: 700; color: var(--muted); padding: 6px 0; }
.mcal-cell {
  border: 1px solid var(--line); border-radius: 10px;
  min-height: 58px; padding: 6px 7px; cursor: pointer;
  display: flex; flex-direction: column; gap: 2px;
  background: #fff; font-size: 11px;
}
.mcal-cell:hover:not(.mcal-dis) { background: #faf7f0; border-color: var(--gold); }
.mcal-day { font-weight: 700; font-size: 14px; }
.mcal-sun { color: var(--red); }
.mcal-price { color: var(--gold); font-weight: 700; }
.mcal-dis { cursor: default; opacity: .45; background: var(--bg); }
.mcal-soldout { background: var(--red-bg) !important; opacity: .8; }
.mcal-soldout .mcal-day { text-decoration: line-through; color: var(--red); }
.mcal-tag { color: var(--red); font-weight: 700; font-size: 10px; }
.mcal-sel { background: #f6efe2 !important; border-color: var(--gold) !important; }
.mcal-legend { margin-left: 10px; }
.dot { display: inline-block; width: 10px; height: 10px; border-radius: 3px; vertical-align: -1px; }
.dot-soldout { background: var(--red-bg); border: 1px solid var(--red); }

/* ---------- 예약 확인 팝업 ---------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 50;
  background: rgba(23, 23, 21, .55);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.modal {
  background: #fff; border-radius: 20px;
  padding: 28px 24px; width: 100%; max-width: 420px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
}
.modal-title { text-align: center; font-size: 17px; font-weight: 700; margin: 0 0 16px; }
.bm-row {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--line);
}
.bm-label { font-size: 13px; color: var(--muted); font-weight: 600; flex: none; }
.bm-value { font-size: 14px; font-weight: 700; text-align: right; }
.bm-value small { color: var(--muted); font-weight: 400; }
.bm-value .room-type { margin-left: 4px; }
.bm-pay { margin-top: 18px; border-radius: 14px; padding: 18px 16px; text-align: center; }
.bm-pay-free { background: var(--green-bg); }
.bm-pay-free .bm-pay-amount { color: var(--green); }
.bm-pay-free .bm-pay-badge { color: var(--green); }
.bm-pay-upgrade { background: var(--purple-bg); }
.bm-pay-upgrade .bm-pay-amount { color: var(--purple); }
.bm-pay-upgrade .bm-pay-badge { color: var(--purple); }
.bm-pay-onsite { background: var(--amber-bg); }
.bm-pay-onsite .bm-pay-amount { color: var(--amber); }
.bm-pay-onsite .bm-pay-badge { color: var(--amber); }
.bm-pay-badge { font-size: 12px; font-weight: 700; margin-bottom: 4px; }
.bm-pay-amount { font-size: 27px; font-weight: 700; letter-spacing: -0.5px; }
.bm-pay-sub { font-size: 12px; color: #6b7075; margin-top: 4px; line-height: 1.6; }
.bm-note { text-align: center; font-size: 12px; color: var(--muted); margin: 14px 0 4px; }
.modal-actions { display: flex; gap: 10px; margin-top: 16px; }
.modal-actions .btn { flex: 1; padding: 14px; }

/* ---------- 토스트 ---------- */
.toast {
  position: fixed; bottom: 88px; left: 50%; transform: translateX(-50%);
  background: var(--brown); color: #fff; padding: 13px 24px;
  border-radius: 999px; font-size: 14px; z-index: 100;
  box-shadow: 0 6px 20px rgba(0,0,0,.3);
  max-width: 90vw; text-align: center;
}
.toast.error { background: var(--red); }

/* ---------- 반응형 ---------- */
@media (max-width: 900px) {
  .book-layout, .book-layout.has-rooms { grid-template-columns: 1fr; }
}

/* 검색 카드: 5칸 가로 배치가 들어가지 않는 폭에서는 미리 2열로 전환 (버튼 잘림 방지) */
@media (max-width: 840px) {
  .search-grid { grid-template-columns: 1fr 1fr; }
  .search-grid label:first-child { grid-column: 1 / -1; }
  .search-grid button { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  body { font-size: 14px; }
  .container { padding: 0 14px 96px; }
  .page-head { margin: 0 -14px 16px; }
  .sec-title { font-size: 17px; margin: 28px 0 12px; }
  .card { padding: 18px; }
  .filter-grid { grid-template-columns: 1fr 1fr; }
  .filter-grid button { grid-column: 1 / -1; }
  .room-list { grid-template-columns: 1fr; }
  .resv-item { flex-direction: column; align-items: flex-start; }
  .greet-name { font-size: 22px; }
  .stat-row { gap: 12px; }
  .stat-card { padding: 18px; }
  .stat-value { font-size: 26px; }
  .book-layout:not(.has-rooms) .mcal-cell { min-height: 64px; padding: 5px 6px; }
  .book-layout:not(.has-rooms) .mcal-day { font-size: 13px; }
  .mcal-cell { min-height: 48px; padding: 4px 5px; }
  .mcal-price { font-size: 9px; }
  .mcal-day { font-size: 12px; }
  .cal-cell { min-height: 60px; padding: 5px; font-size: 10px; }
  .cal-price { font-size: 10px; }
  .cal-day { font-size: 12px; }
  .login-card { padding: 36px 24px; }
  .login-card h1 { font-size: 24px; }
}
