/* 스포츠박스 매치 — 모바일 우선 스타일 */
:root {
  --green: #16a34a;
  --green-dark: #15803d;
  --bg: #f6f7f6;
  --card: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --line: #e5e7eb;
  --danger: #dc2626;
  --warn: #d97706;
  --info: #2563eb;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.5;
  padding-bottom: 76px;
  -webkit-font-smoothing: antialiased;
}
.topbar {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  background: var(--green); color: #fff;
  padding: 10px 14px;
}
.brand { color: #fff; font-weight: 700; text-decoration: none; font-size: 17px; display: flex; align-items: center; gap: 8px; }
.brand-logo { height: 30px; width: 30px; border-radius: 7px; display: block; background: #fff; }
.topbar-right { display: flex; align-items: center; gap: 10px; }
.user-chip { font-size: 12px; opacity: .92; }
.sport-switch { color: #fff; font-size: 13px; font-weight: 700; text-decoration: none; background: rgba(255,255,255,.18); padding: 3px 9px; border-radius: 999px; }

/* 종목 선택 화면 */
.sport-pick { max-width: 480px; margin: 30px auto; padding: 0 6px; }
.sport-pick-title { font-size: 24px; text-align: center; line-height: 1.35; margin-bottom: 24px; }
.sport-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 18px; }
.sport-card { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 30px 12px; border-radius: 16px; text-decoration: none; color: #fff; }
.sport-card:active { transform: scale(0.98); }
.sport-futsal { background: linear-gradient(150deg,#16a34a,#15803d); }
.sport-pickle { background: linear-gradient(150deg,#2563eb,#1e40af); }
.sport-emoji { font-size: 46px; line-height: 1; }
.sport-name { font-size: 20px; font-weight: 800; }
.sport-card .sport-desc { font-size: 12px; opacity: .9; }
.top-link { color: #fff; font-size: 13px; text-decoration: none; border: 1px solid rgba(255,255,255,.5); padding: 3px 8px; border-radius: 6px; }
.container { max-width: 760px; margin: 0 auto; padding: 14px; }
.flash { max-width: 760px; margin: 10px auto 0; padding: 10px 14px; border-radius: 8px; font-size: 14px; }
.flash-success { background: #dcfce7; color: #166534; }
.flash-error { background: #fee2e2; color: #991b1b; }
h1 { font-size: 20px; margin: 8px 0 12px; font-weight: 800; letter-spacing: -.3px; }
h2 { font-size: 16px; margin: 20px 0 8px; font-weight: 700; }
h3 { font-size: 14px; margin: 12px 0 6px; font-weight: 700; }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  padding: 14px; margin-bottom: 12px;
}
.card .card-title { font-weight: 700; margin-bottom: 4px; }
.card .meta { color: var(--muted); font-size: 13px; }
.card-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; }
.badge {
  display: inline-block; font-size: 11px; padding: 2px 8px; border-radius: 999px;
  background: #eef2f7; color: #374151; vertical-align: middle; white-space: nowrap;
}
.badge-success { background: #dcfce7; color: #166534; }
.badge-info { background: #dbeafe; color: #1e40af; }
.badge-warn { background: #fef3c7; color: #92400e; }
.badge-muted { background: #f3f4f6; color: #6b7280; }
.badge-danger { background: #fee2e2; color: #991b1b; }
.bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 20;
  display: flex; background: #fff; border-top: 1px solid var(--line);
  padding-bottom: env(safe-area-inset-bottom);
}
.nav-item {
  flex: 1; text-align: center; padding: 12px 4px; font-size: 12px;
  color: var(--muted); text-decoration: none; font-weight: 600;
}
.nav-item.active { color: var(--green-dark); }
form { margin: 0; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.form-grid .full { grid-column: 1 / -1; }
label.field { display: block; font-size: 13px; color: var(--muted); margin-bottom: 8px; }
label.field > span { display: block; margin-bottom: 3px; font-weight: 600; color: var(--text); }
input[type=text], input[type=tel], input[type=password], input[type=number], input[type=date],
select, textarea {
  width: 100%; padding: 9px 10px; border: 1px solid var(--line); border-radius: 8px;
  font-size: 15px; background: #fff; color: var(--text); font-family: inherit;
}
textarea { resize: vertical; min-height: 64px; }
.check { display: flex; align-items: center; gap: 6px; font-size: 14px; margin: 6px 0; }
.check input { width: 16px; height: 16px; }
.btn {
  display: inline-block; border: none; border-radius: 8px; cursor: pointer;
  font-size: 14px; font-weight: 700; padding: 10px 14px; text-decoration: none; text-align: center;
  background: var(--green); color: #fff; font-family: inherit;
}
.btn:hover { background: var(--green-dark); }
.btn-secondary { background: #fff; color: var(--text); border: 1px solid var(--line); }
.btn-secondary:hover { background: #f3f4f6; }
.btn-danger { background: #fff; color: var(--danger); border: 1px solid #fecaca; }
.btn-danger:hover { background: #fef2f2; }
.btn-sm { font-size: 12px; padding: 6px 10px; }
.btn-block { display: block; width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.inline-form { display: inline; }
table.list { width: 100%; border-collapse: collapse; font-size: 13px; background: #fff; border: 1px solid var(--line); border-radius: 10px; display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
table.list th, table.list td { text-align: left; padding: 8px 10px; border-bottom: 1px solid var(--line); vertical-align: top; white-space: nowrap; }
table.list th { background: #f9fafb; font-size: 12px; color: var(--muted); }
table.list tr:last-child td { border-bottom: none; }
.stat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px; margin-bottom: 14px; }
.stat { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 12px; }
.stat .num { font-size: 22px; font-weight: 800; color: var(--green-dark); }
.stat .label { font-size: 12px; color: var(--muted); }
.empty { text-align: center; color: var(--muted); padding: 26px 10px; background: #fff; border: 1px dashed var(--line); border-radius: 12px; margin-bottom: 12px; font-size: 14px; }
.section-head { display: flex; justify-content: space-between; align-items: center; margin: 20px 0 8px; }
.section-head h2 { margin: 0; }
.notice { font-size: 13px; color: var(--muted); background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px; margin-bottom: 12px; }
.price-highlight { font-weight: 800; color: var(--green-dark); }
details.expander { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px; margin-bottom: 10px; }
details.expander summary { cursor: pointer; font-weight: 700; font-size: 14px; }
details.expander > div { margin-top: 10px; }
.filter-bar { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.filter-bar a { font-size: 12px; padding: 5px 10px; border-radius: 999px; border: 1px solid var(--line); background: #fff; color: var(--muted); text-decoration: none; }
.filter-bar a.active { background: var(--green); border-color: var(--green); color: #fff; }
pre.share-text { background: #f9fafb; border: 1px solid var(--line); border-radius: 8px; padding: 10px; font-size: 13px; white-space: pre-wrap; font-family: inherit; }
.court-photo { width: 100%; max-height: 200px; object-fit: cover; border-radius: 8px; margin: 8px 0; display: block; }

/* ── 대관 리스트 (카드 그리드, SparkPlus 벤치마킹) ── */
.group-head { margin: 20px 0 10px; }
.group-head h2 { margin: 0; }
.space-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 8px; }
.space-card { display: block; background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; text-decoration: none; color: inherit; }
.space-card:active { transform: scale(0.99); }
.space-thumb { position: relative; aspect-ratio: 4/3; background: #eef2f7; }
.space-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.space-thumb-empty { width: 100%; height: 100%; background: linear-gradient(135deg,#dcfce7,#bbf7d0); }
.space-tag { position: absolute; top: 8px; left: 8px; font-size: 11px; font-weight: 700; background: rgba(0,0,0,.6); color: #fff; padding: 2px 8px; border-radius: 999px; }
.space-body { padding: 10px 12px 12px; }
.space-loc { font-size: 11px; color: var(--muted); }
.space-name { font-weight: 700; font-size: 15px; margin: 2px 0 6px; }
.space-price { font-weight: 800; color: var(--green-dark); font-size: 15px; }
.space-cap { margin-top: 2px; }

/* ── 코트 상세 페이지 ── */
.back-link { display: inline-block; color: var(--muted); text-decoration: none; font-size: 13px; margin-bottom: 8px; }
.detail { padding-bottom: 12px; }
.detail-hero { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 12px; display: block; }
.detail-hero-empty { display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg,#dcfce7,#bbf7d0); color: var(--green-dark); font-weight: 800; font-size: 22px; }
.detail-title { font-size: 22px; margin: 14px 0 8px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; }
.chip { font-size: 12px; background: #eef2f7; color: #374151; padding: 4px 10px; border-radius: 999px; }
.chip-amenity { background: #dcfce7; color: #166534; }
.amenity-bar { display: flex; flex-wrap: wrap; gap: 6px; margin: -4px 0 14px; }
.amenity-bar .chip { font-size: 11px; }
.detail-sec { border-top: 1px solid var(--line); padding: 16px 0 4px; }
.detail-sec h2 { font-size: 16px; margin: 0 0 10px; }
.detail-sec p { font-size: 14px; line-height: 1.6; margin: 0 0 8px; }
.rate-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px dashed var(--line); font-size: 14px; }
.rate-row:last-child { border-bottom: none; }
.rate-row b { color: var(--green-dark); }

/* ── 하단 고정 예약 바 ── */
.book-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 30;
  display: flex; align-items: center; gap: 12px;
  background: #fff; border-top: 1px solid var(--line);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  max-width: 760px; margin: 0 auto;
}
.book-bar-price { flex: 1; display: flex; flex-direction: column; line-height: 1.25; }
.book-bar-price .price-highlight { font-size: 20px; }
.book-bar .btn { padding: 12px 28px; }

/* 카카오 로그인 버튼 */
.btn-kakao {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 12px 14px; border-radius: 8px; border: none; cursor: pointer;
  background: #FEE500; color: #191600; font-size: 15px; font-weight: 700;
  text-decoration: none; margin-bottom: 6px;
}
.btn-kakao:hover { background: #f2da00; }
.kakao-symbol { font-size: 17px; line-height: 1; }
.divider { display: flex; align-items: center; text-align: center; color: var(--muted); font-size: 12px; margin: 14px 0; }
.divider::before, .divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.divider span { padding: 0 10px; }

/* 예약 현황 타임라인 (플랩풋볼 대관 화면 벤치마킹) */
.timeline { display: flex; gap: 1px; margin: 8px 0 2px; height: 18px; border-radius: 4px; overflow: hidden; }
.timeline-cell { flex: 1; background: #dcfce7; }
.timeline-cell.is-confirmed { background: #f87171; }
.timeline-cell.is-requested { background: #fcd34d; }
.timeline-scale { display: flex; justify-content: space-between; font-size: 10px; color: var(--muted); margin-bottom: 6px; }
.date-chips { display: flex; gap: 6px; overflow-x: auto; padding-bottom: 4px; margin-bottom: 10px; -webkit-overflow-scrolling: touch; }
.date-chips a {
  flex: 0 0 auto; text-align: center; min-width: 52px; padding: 6px 8px;
  border-radius: 10px; border: 1px solid var(--line); background: #fff;
  color: var(--text); text-decoration: none; font-size: 12px; line-height: 1.3;
}
.date-chips a .dow { display: block; font-size: 11px; color: var(--muted); }
.date-chips a.active { background: var(--green); border-color: var(--green); color: #fff; }
.date-chips a.active .dow { color: rgba(255,255,255,.85); }

@media (min-width: 720px) {
  .form-grid { grid-template-columns: 1fr 1fr 1fr; }
  .form-grid .full { grid-column: 1 / -1; }
}

/* ============================================================
   홍보 랜딩 페이지 (landing.php)
   ============================================================ */
body.lp { padding-bottom: 0; background: #f6f7f6; position: relative; }

.lp-nav {
  position: absolute; top: 0; left: 0; right: 0; z-index: 5;
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 24px;
}
.lp-nav-brand { display: flex; align-items: center; gap: 9px; color: #fff; font-weight: 800; font-size: 17px; text-decoration: none; letter-spacing: -.2px; }
.lp-nav-brand img { width: 30px; height: 30px; border-radius: 7px; background: #fff; display: block; }
.lp-nav-actions { display: flex; align-items: center; gap: 14px; }
.lp-nav-link { color: #fff; opacity: .92; text-decoration: none; font-size: 14px; font-weight: 600; white-space: nowrap; }
.lp-nav-cta { background: var(--green); color: #fff; text-decoration: none; font-weight: 700; font-size: 14px; padding: 9px 18px; border-radius: 9px; white-space: nowrap; }
.lp-nav-cta:hover { background: var(--green-dark); }

/* Hero */
.lp-hero { position: relative; overflow: hidden; background: #0b3d1f; }
.lp-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.lp-hero-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,32,16,.55), rgba(6,32,16,.9)); }
.lp-hero-inner { position: relative; max-width: 1180px; margin: 0 auto; padding: 104px 24px 72px; color: #fff; }
.lp-badge { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 700; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.25); padding: 6px 13px; border-radius: 999px; margin-bottom: 22px; white-space: nowrap; }
.lp-hero-title { font-size: clamp(34px, 6vw, 62px); line-height: 1.1; font-weight: 900; letter-spacing: -1.5px; margin: 0 0 18px; max-width: 16ch; }
.lp-hero-sub { font-size: clamp(15px, 2.2vw, 20px); line-height: 1.6; color: rgba(255,255,255,.86); max-width: 52ch; margin: 0 0 32px; }
.lp-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.lp-stats { display: flex; gap: 30px; flex-wrap: wrap; margin-top: 44px; }
.lp-stat-num { font-size: 30px; font-weight: 900; }
.lp-stat-label { font-size: 13px; color: rgba(255,255,255,.7); }

/* 랜딩 버튼 */
.lp-btn { display: inline-flex; align-items: center; justify-content: center; border: none; cursor: pointer; text-decoration: none; font-weight: 800; font-size: 16px; padding: 15px 30px; border-radius: 11px; }
.lp-btn-primary { background: var(--green); color: #fff; box-shadow: 0 8px 24px rgba(22,163,74,.4); }
.lp-btn-primary:hover { background: var(--green-dark); }
.lp-btn-ghost { background: rgba(255,255,255,.12); color: #fff; font-weight: 700; border: 1px solid rgba(255,255,255,.35); padding: 15px 28px; }
.lp-btn-ghost:hover { background: rgba(255,255,255,.2); }
.lp-btn-lg { font-size: 17px; padding: 16px 40px; border-radius: 12px; box-shadow: 0 8px 24px rgba(22,163,74,.45); }

/* 시설 소개 */
.lp-section { max-width: 1180px; margin: 0 auto; padding: 70px 24px 30px; }
.lp-sec-head { text-align: center; margin-bottom: 40px; }
.lp-eyebrow { color: var(--green); font-weight: 800; font-size: 14px; letter-spacing: .5px; margin-bottom: 8px; }
.lp-sec-title { font-size: clamp(26px, 4vw, 40px); font-weight: 900; letter-spacing: -1px; margin: 0; line-height: 1.2; }
.lp-facilities { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.lp-fac-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,.04); }
.lp-fac-thumb { position: relative; aspect-ratio: 16/10; background: #eef2f7; }
.lp-fac-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lp-fac-tag { position: absolute; top: 12px; left: 12px; font-size: 12px; font-weight: 700; background: rgba(0,0,0,.6); color: #fff; padding: 4px 11px; border-radius: 999px; }
.lp-fac-body { padding: 18px 20px 22px; }
.lp-fac-name { font-size: 19px; font-weight: 800; margin: 0 0 6px; }
.lp-fac-desc { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0 0 12px; }
.lp-fac-price { font-size: 15px; font-weight: 800; color: var(--green-dark); }

/* 편의시설 스트립 */
.lp-amenity-strip { max-width: 1180px; margin: 0 auto; padding: 24px 24px 60px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.lp-amenity { font-size: 14px; font-weight: 600; color: #166534; background: #dcfce7; padding: 9px 16px; border-radius: 999px; }

/* 이용 흐름 */
.lp-steps-wrap { background: #fff; border-top: 1px solid var(--line); }
.lp-steps-inner { max-width: 1180px; margin: 0 auto; padding: 64px 24px; }
.lp-steps-title { text-align: center; font-size: clamp(24px, 4vw, 36px); font-weight: 900; letter-spacing: -1px; margin: 0 0 44px; }
.lp-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.lp-step { text-align: center; padding: 0 12px; }
.lp-step-num { width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 16px; background: #dcfce7; color: var(--green-dark); font-size: 24px; font-weight: 900; display: flex; align-items: center; justify-content: center; }
.lp-step-title { font-size: 18px; font-weight: 800; margin: 0 0 6px; }
.lp-step-desc { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0; }

/* FAQ */
.lp-faq { padding-top: 40px; padding-bottom: 50px; }
.lp-faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.lp-faq-item { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 4px 18px; }
.lp-faq-item summary { cursor: pointer; font-weight: 700; font-size: 16px; padding: 14px 0; list-style: none; position: relative; padding-right: 24px; }
.lp-faq-item summary::-webkit-details-marker { display: none; }
.lp-faq-item summary::after { content: "+"; position: absolute; right: 0; top: 12px; font-size: 20px; font-weight: 400; color: var(--muted); }
.lp-faq-item[open] summary::after { content: "−"; }
.lp-faq-item p { margin: 0 0 16px; font-size: 15px; line-height: 1.7; color: #374151; }

/* CTA */
.lp-cta-sec { position: relative; overflow: hidden; background: #0b3d1f; }
.lp-cta-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .35; }
.lp-cta-scrim { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(11,61,31,.92), rgba(11,61,31,.7)); }
.lp-cta-inner { position: relative; max-width: 1180px; margin: 0 auto; padding: 66px 24px; text-align: center; color: #fff; }
.lp-cta-title { font-size: clamp(26px, 4vw, 40px); font-weight: 900; letter-spacing: -1px; margin: 0 0 14px; }
.lp-cta-sub { font-size: 16px; color: rgba(255,255,255,.85); margin: 0 0 28px; }

/* Footer */
.lp-footer { background: #f6f7f6; padding: 34px 24px; text-align: center; color: var(--muted); font-size: 13px; line-height: 1.8; }
.lp-footer-logo { width: 34px; height: 34px; border-radius: 9px; margin-bottom: 10px; }
.lp-footer-name { font-weight: 800; color: var(--text); font-size: 15px; margin-bottom: 6px; }
.lp-footer-links a { color: var(--muted); text-decoration: none; }
.lp-footer-links a:hover { color: var(--text); }

/* ============================================================
   운영자(admin) — 호스트센터 UX
   ============================================================ */
/* 공통 운영 서브내비 */
.adm-subnav { display: flex; gap: 6px; overflow-x: auto; padding: 0 0 12px; margin: -2px 0 8px; -webkit-overflow-scrolling: touch; }
.adm-subnav a { flex: 0 0 auto; font-size: 13px; font-weight: 600; color: var(--muted); text-decoration: none; padding: 7px 13px; border-radius: 999px; border: 1px solid var(--line); background: #fff; white-space: nowrap; }
.adm-subnav a.active { background: var(--green); border-color: var(--green); color: #fff; }
.adm-subnav .spacer { flex: 1 0 8px; }
.adm-subnav a.ghost { border-style: dashed; }

/* 페이지 헤더(제목 + 부가설명) */
.adm-h { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin: 4px 0 14px; }
.adm-h h1 { margin: 0; }
.adm-h .sub { font-size: 13px; color: var(--muted); }

/* 오늘 할 일 카드 */
.adm-todo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(148px, 1fr)); gap: 10px; margin: 2px 0 18px; }
.adm-todo { display: block; text-decoration: none; color: inherit; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 14px 16px; position: relative; }
.adm-todo .n { font-size: 26px; font-weight: 800; line-height: 1.1; }
.adm-todo .l { font-size: 13px; color: var(--muted); margin-top: 3px; }
.adm-todo .arrow { position: absolute; top: 13px; right: 14px; color: var(--muted); font-size: 13px; }
.adm-todo.urgent { border-color: #fecaca; background: #fef2f2; }
.adm-todo.urgent .n { color: var(--danger); }
.adm-todo.warn { border-color: #fde68a; background: #fffbeb; }
.adm-todo.warn .n { color: #b45309; }
.adm-todo.ok .n { color: var(--green-dark); }

/* 바로가기 메뉴 그리드 */
.adm-menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(158px, 1fr)); gap: 10px; margin-bottom: 8px; }
.adm-menu-card { display: block; text-decoration: none; color: inherit; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 13px 15px; }
.adm-menu-card .t { font-weight: 700; font-size: 15px; margin-bottom: 3px; }
.adm-menu-card .d { font-size: 12px; color: var(--muted); line-height: 1.5; }
.adm-menu-card:hover { border-color: var(--green); }

/* 코트별 예약 타임라인 */
.adm-tl { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 12px 14px; margin-bottom: 12px; }
.adm-tl-scale { display: flex; justify-content: space-between; font-size: 10px; color: var(--muted); margin: 0 0 6px 92px; }
.adm-tl-row { display: flex; align-items: center; gap: 8px; margin-bottom: 7px; }
.adm-tl-row:last-child { margin-bottom: 0; }
.adm-tl-name { flex: 0 0 84px; font-size: 12px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.adm-tl-track { position: relative; flex: 1; height: 22px; background: #f1f5f9; border-radius: 6px; overflow: hidden; }
.adm-tl-block { position: absolute; top: 0; height: 100%; border-radius: 6px; font-size: 10px; color: #fff; display: flex; align-items: center; justify-content: center; overflow: hidden; white-space: nowrap; padding: 0 3px; box-sizing: border-box; }
.adm-tl-block.c { background: var(--green); }
.adm-tl-block.r { background: #f59e0b; }
.adm-tl-legend { display: flex; gap: 14px; font-size: 11px; color: var(--muted); margin-top: 10px; }
.adm-tl-legend .dot { display: inline-block; width: 9px; height: 9px; border-radius: 3px; margin-right: 4px; vertical-align: middle; }

/* 주간 캘린더 */
.cal-weeknav { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin: 2px 0 12px; }
.cal-weeklabel { font-weight: 700; font-size: 14px; }
.date-chips a .cal-count { display: block; margin: 3px auto 0; font-size: 10px; font-weight: 700; color: #fff; background: var(--green); border-radius: 999px; min-width: 17px; padding: 0 4px; line-height: 16px; }
.date-chips a .cal-count.zero { background: #eef0f2; color: #b0b6bd; }
.date-chips a.active .cal-count { background: #fff; color: var(--green-dark); }
.date-chips a.active .cal-count.zero { background: rgba(255,255,255,.45); color: #fff; }

/* 게스트 문의·안내 블록 */
.help-block { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 13px 15px; margin: 8px 0 12px; }
.help-title { font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.help-line { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 0; }
.help-actions { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }

/* 운영자 폼 섹션 그룹 */
.adm-formsec { margin: 4px 0 2px; }
.adm-formsec:first-child { margin-top: 0; }
.adm-formsec > h3 { margin: 14px 0 8px; font-size: 13px; color: var(--muted); font-weight: 700; letter-spacing: .2px; }
.adm-formsec:first-child > h3 { margin-top: 4px; }
