/* ===== HONEY-NOIR DESIGN SYSTEM ===== */

/* ===== CSS CUSTOM PROPERTIES (Cream Theme Default) ===== */
:root {
  --bg: #FFF6E6;
  --glow: radial-gradient(900px 420px at 80% -8%, rgba(255,180,40,.18), transparent 60%),
          radial-gradient(700px 380px at 5% 100%, rgba(255,123,169,.12), transparent 60%);
  --surface: #FFFFFF;
  --ink: #3A2A18;
  --ink-soft: #9A8467;
  --primary: #F5A300;
  --primary-ink: #C97A00;
  --primary-grad: linear-gradient(135deg,#FFC83D,#F59300);
  --primary-shadow: rgba(245,147,0,.55);
  --on-primary: #3A2200;
  --accent: #FFD24B;
  --secondary: #FF7BA9;
  --on-secondary: #fff;
  --secondary-shadow: rgba(255,123,169,.5);
  --border: #F2E2C2;
  --shadow: 0 12px 30px -16px rgba(120,82,20,.28);
  --shadow-hover: 0 22px 44px -18px rgba(120,82,20,.4);
  --chip: #FFF3DC;
  --chip-hover: #FFEAC2;
  --tag-bg: #FFEFC8;
  --cover: linear-gradient(120deg,#FFE08A,#FFB454);
  --hero-bg: linear-gradient(135deg,#FFF3D6,#FFE4C0);
  --hero-ink: #3A2A18;
  --hero-sub: #7E6745;
  --balance-bg: linear-gradient(160deg,#FFF7E4,#FFFFFF);
  --note-bg: #FFF6E0;
  --note-line: #F3E0B4;
  --panel-head: #241809;
  --panel-head-ink: #FFD98A;
  --header-bg: #241809;
  --header-ink: #FFF3DC;
  --header-line: #3a2914;
  --header-pill: rgba(255,255,255,.07);
  --header-pill-line: rgba(255,210,120,.3);
  --ok: #1FAE63;
  --ok-bg: #E3F7EC;
  --ok-ring: rgba(31,174,99,.4);
  --busy: #E2832B;
  --busy-bg: #FCEEDC;
  --off: #A89A86;
  --off-bg: #F0EADF;
  --pattern: url("/images/honeycomb-dark.svg");
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  font-family: "M PLUS Rounded 1c", "Zen Kaku Gothic New", sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== APP WRAPPER ===== */
.app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--bg);
  background-image:
    var(--pattern),
    radial-gradient(ellipse 900px 420px at 80% -8%, rgba(255,180,40,.18) 0%, transparent 60%),
    radial-gradient(ellipse 700px 380px at 5% 100%, rgba(255,123,169,.12) 0%, transparent 60%);
  background-attachment: fixed;
  background-size: 260px auto, 100% 100%, 100% 100%;
  background-repeat: repeat, no-repeat, no-repeat;
  transition: background-color .4s ease, color .4s ease;
}

/* ===== TYPOGRAPHY ===== */
.font-display { font-family: "Zen Maru Gothic", "M PLUS Rounded 1c", sans-serif; }
.latin { font-family: "Quicksand", sans-serif; letter-spacing: .01em; }
h1, h2, h3 {
  font-family: "Zen Maru Gothic", "M PLUS Rounded 1c", sans-serif;
  line-height: 1.25;
  font-weight: 700;
}

/* ===== LAYOUT ===== */
.wrap { width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 20px; }
.main { flex: 1; padding: 38px 0 80px; }
.page-head { margin: 8px 0 26px; }
.page-title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 900;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 12px;
}
.page-sub { color: var(--ink-soft); font-size: 15px; margin-top: 6px; }

/* ===== HEADER ===== */
.hdr {
  background: var(--header-bg);
  color: var(--header-ink);
  position: sticky;
  top: 0;
  z-index: 40;
  box-shadow: 0 2px 24px rgba(0,0,0,.18);
  border-bottom: 1px solid var(--header-line);
}
.hdr-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}
.hdr-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  cursor: pointer;
  flex-shrink: 0;
}
.hdr-logo-text { line-height: 1; }
.hdr-logo-en {
  font-family: "Quicksand", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--header-ink);
  letter-spacing: .005em;
  white-space: nowrap;
}
.hdr-logo-en span { color: var(--accent); }
.hdr-logo-ja {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  margin-top: 3px;
  letter-spacing: .22em;
  opacity: .92;
}
.hdr-right { display: flex; align-items: center; gap: 10px; }
.pt-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--header-pill);
  border: 1px solid var(--header-pill-line);
  border-radius: 999px;
  padding: 7px 14px 7px 11px;
  color: var(--header-ink);
  font-weight: 700;
  font-size: 14px;
}
.pt-pill b { font-family: "Quicksand", sans-serif; font-size: 16px; color: var(--accent); }
.nav-link {
  color: var(--header-ink);
  opacity: .82;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 10px;
  transition: .18s;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-link:hover { opacity: 1; background: rgba(255,255,255,.08); color: var(--header-ink); }
.nav-link.active { opacity: 1; background: rgba(255,255,255,.12); color: var(--accent); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  border-radius: 14px;
  padding: 12px 20px;
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
  font-family: inherit;
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary {
  background: var(--primary-grad);
  color: var(--on-primary);
  box-shadow: 0 8px 20px -6px var(--primary-shadow);
}
.btn-primary:hover {
  box-shadow: 0 12px 26px -6px var(--primary-shadow);
  transform: translateY(-1px);
  color: var(--on-primary);
}
.btn-secondary {
  background: var(--secondary);
  color: var(--on-secondary);
  box-shadow: 0 8px 20px -8px var(--secondary-shadow);
}
.btn-secondary:hover { transform: translateY(-1px); color: var(--on-secondary); }
.btn-ghost {
  background: var(--chip);
  color: var(--ink);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  background: var(--chip-hover);
  border-color: var(--primary);
  color: var(--ink);
}
.btn-outline-light {
  background: rgba(255,255,255,.08);
  color: var(--header-ink);
  border: 1.5px solid var(--header-pill-line);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.16);
  color: var(--header-ink);
}
.btn-block { display: flex; width: 100%; }
.btn-lg { padding: 15px 26px; font-size: 16px; border-radius: 16px; }
.btn-sm { padding: 8px 14px; font-size: 13px; border-radius: 10px; }
.btn:disabled, .btn[disabled] {
  opacity: .5;
  cursor: not-allowed;
  box-shadow: none;
  filter: saturate(.5);
}
.btn:disabled:hover, .btn[disabled]:hover { transform: none; }

/* ===== CARD ===== */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--chip);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink-soft);
}

/* ===== STATUS BADGE ===== */
.status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  padding: 4px 10px 4px 8px;
}
.status .dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.status-online { background: var(--ok-bg); color: var(--ok); }
.status-online .dot {
  background: var(--ok);
  box-shadow: 0 0 0 3px var(--ok-ring);
}
.status-busy { background: var(--busy-bg); color: var(--busy); }
.status-busy .dot { background: var(--busy); }
.status-offline { background: var(--off-bg); color: var(--off); }
.status-offline .dot { background: var(--off); }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 var(--ok-ring); }
  70% { box-shadow: 0 0 0 5px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

/* ===== AVATAR ===== */
.ava {
  position: relative;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  color: #fff;
  overflow: hidden;
}
.ava .ava-badge {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2.5px solid var(--surface);
}

/* ===== PERFORMERS ===== */
.perf-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(258px, 1fr)); gap: 20px; }
.perf {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .25s ease;
}
.perf:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.perf-top {
  position: relative;
  padding: 22px 20px 16px;
  display: flex;
  gap: 14px;
  align-items: center;
}
.perf-cover { position: absolute; inset: 0; height: 84px; background: var(--cover); opacity: .9; }
.perf-name { font-weight: 800; font-size: 18px; color: var(--ink); font-family: "Zen Maru Gothic", sans-serif; }
.perf-body { padding: 2px 20px 18px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.perf-bio { font-size: 13.5px; color: var(--ink-soft); line-height: 1.7; }
.perf-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag { font-size: 11.5px; font-weight: 700; color: var(--primary-ink); background: var(--tag-bg); border-radius: 999px; padding: 3px 10px; }
.perf-foot {
  padding: 14px 20px;
  border-top: 1px dashed var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rate { display: flex; align-items: baseline; gap: 4px; }
.rate b { font-family: "Quicksand", sans-serif; font-size: 24px; font-weight: 700; color: var(--ink); }
.rate span { font-size: 13px; color: var(--ink-soft); font-weight: 600; }

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  padding: 38px 36px;
  margin-bottom: 30px;
  background: var(--hero-bg);
  border: 1px solid var(--border);
}
.hero h2 { font-size: clamp(24px, 3.6vw, 34px); font-weight: 900; color: var(--hero-ink); max-width: 18em; }
.hero p { margin-top: 12px; color: var(--hero-sub); font-size: 15px; max-width: 30em; }
.hero-deco { position: absolute; right: 10px; top: 10px; opacity: .9; pointer-events: none; }
.hero-stats { display: flex; gap: 26px; margin-top: 24px; flex-wrap: wrap; }
.hero-stat b {
  font-family: "Quicksand", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--hero-ink);
  display: block;
}
.hero-stat span { font-size: 12.5px; color: var(--hero-sub); font-weight: 600; }

/* ===== MYPAGE ===== */
.balance {
  position: relative;
  overflow: hidden;
  padding: 30px;
  text-align: center;
  background: var(--balance-bg);
  border: 1px solid var(--border);
}
.balance .lbl { font-size: 14px; color: var(--ink-soft); font-weight: 700; }
.balance .amt {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 1.05;
  color: var(--primary-ink);
  margin: 6px 0 4px;
}
.balance .amt small { font-size: 24px; margin-left: 4px; }
.hist { display: flex; flex-direction: column; }
.hist-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 4px;
  border-bottom: 1px dashed var(--border);
}
.hist-row:last-child { border-bottom: none; }
.hist-ic {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: var(--chip);
}
.hist-meta { flex: 1; min-width: 0; }
.hist-meta .t { font-weight: 700; font-size: 14.5px; color: var(--ink); }
.hist-meta .d { font-size: 12.5px; color: var(--ink-soft); }
.hist-amt { font-family: "Quicksand", sans-serif; font-weight: 700; font-size: 16px; white-space: nowrap; }
.hist-amt.plus { color: var(--ok); }
.hist-amt.minus { color: var(--ink-soft); }
.empty { padding: 30px; text-align: center; color: var(--ink-soft); font-size: 14px; }

/* ===== POINTS ===== */
.pay-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 8px; }
.pay-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink-soft);
  background: var(--chip);
  border: 1.5px solid transparent;
  transition: .16s;
  cursor: pointer;
  font-family: inherit;
}
.pay-tab.active { color: var(--primary-ink); background: var(--tag-bg); border-color: var(--primary); }
.plan-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(212px, 1fr)); gap: 18px; }
.plan {
  position: relative;
  padding: 26px 22px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: transform .18s, box-shadow .25s, border-color .2s;
  cursor: pointer;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.plan.popular { border-color: var(--primary); border-width: 2px; }
.plan-tag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-grad);
  color: var(--on-primary);
  font-size: 12px;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 6px 14px -6px var(--primary-shadow);
  display: flex;
  align-items: center;
  gap: 6px;
}
.plan-amt { font-family: "Quicksand", sans-serif; font-weight: 700; font-size: 40px; color: var(--primary-ink); line-height: 1; }
.plan-amt small { font-size: 18px; }
.plan-yen { font-size: 20px; font-weight: 800; color: var(--ink); }
.plan-per { font-size: 12.5px; color: var(--ink-soft); font-weight: 600; }
.save-badge { background: var(--secondary); color: var(--on-secondary); font-size: 11px; font-weight: 800; padding: 3px 10px; border-radius: 999px; }
.notice {
  margin-top: 24px;
  padding: 18px 22px;
  border-radius: 18px;
  background: var(--note-bg);
  border: 1px solid var(--note-line);
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.8;
}
.notice b { color: var(--ink); }

/* ===== STAFF DASHBOARD ===== */
.staff-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 24px; align-items: start; }
.panel-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 22px;
  border-radius: 24px 24px 0 0;
  background: var(--panel-head);
  color: var(--panel-head-ink);
  font-weight: 800;
  font-size: 16px;
  font-family: "Zen Maru Gothic", sans-serif;
}
.panel-body { padding: 24px 22px; }
.state-big { text-align: center; font-size: 18px; font-weight: 700; margin-bottom: 18px; }
.state-big .v { font-size: 24px; font-family: "Zen Maru Gothic", sans-serif; }
.state-online .v { color: var(--ok); }
.state-offline .v { color: var(--off); }
.state-busy .v { color: var(--busy); }
.toggle-row { display: flex; gap: 12px; justify-content: center; }
.guide-item { padding: 13px 0; border-bottom: 1px dashed var(--border); }
.guide-item:last-child { border-bottom: none; }
.guide-item .h { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 14.5px; color: var(--ink); }
.guide-item .b { font-size: 13px; color: var(--ink-soft); margin-top: 4px; line-height: 1.7; }

/* ===== CALL MODAL / INCOMING ===== */
.scrim {
  position: fixed;
  inset: 0;
  background: rgba(15,8,20,.55);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  z-index: 60;
  padding: 20px;
}
.modal-call {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: 0 30px 70px -20px rgba(0,0,0,.5);
  width: 100%;
  max-width: 380px;
  padding: 32px 28px;
  text-align: center;
}
.call-state { font-size: 14px; font-weight: 700; color: var(--ink-soft); letter-spacing: .04em; }
.call-name { font-family: "Zen Maru Gothic", sans-serif; font-weight: 900; font-size: 22px; color: var(--ink); margin-top: 4px; }
.call-timer { font-family: "Quicksand", sans-serif; font-weight: 700; font-size: 40px; color: var(--primary-ink); margin: 14px 0 2px; }
.call-cost { font-size: 13px; color: var(--ink-soft); }
.call-actions { display: flex; gap: 12px; justify-content: center; margin-top: 24px; }
.cbtn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  transition: transform .12s, filter .2s;
  border: none;
  cursor: pointer;
}
.cbtn:hover { transform: translateY(-2px); }
.cbtn:active { transform: scale(.95); }
.cbtn-accept { background: linear-gradient(135deg,#34d27b,#1fae63); }
.cbtn-decline { background: linear-gradient(135deg,#ff6b6b,#e23b3b); }
.cbtn-mute { background: var(--chip); color: var(--ink); }
.cbtn-mute.on { background: var(--busy); color: #fff; }
.cbtn-lbl { font-size: 11px; font-weight: 700; color: var(--ink-soft); margin-top: 7px; }
.cbtn-wrap { display: flex; flex-direction: column; align-items: center; }

/* ===== FOOTER ===== */
.ftr { background: var(--header-bg); color: var(--header-ink); border-top: 1px solid var(--header-line); }
.ftr-in { padding: 30px 0; text-align: center; }
.ftr-tag { font-size: 13px; opacity: .7; margin-top: 8px; }

/* ===== MISC ===== */
.section-h {
  font-size: 18px;
  font-weight: 800;
  font-family: "Zen Maru Gothic", sans-serif;
  color: var(--ink);
  margin: 30px 0 12px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.server-flash {
  margin: 0;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.server-flash-success { background: var(--ok-bg); color: var(--ok); }
.server-flash-danger, .server-flash-error { background: #ffeaea; color: #c0392b; }
.server-flash-warning { background: var(--busy-bg); color: var(--busy); }
.server-flash-info { background: var(--chip); color: var(--ink); }

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 1; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.float-anim {}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes ring { 0%,100%{transform:rotate(0)} 20%{transform:rotate(12deg)} 40%{transform:rotate(-10deg)} 60%{transform:rotate(8deg)} 80%{transform:rotate(-6deg)} }
@keyframes pop { from { transform: scale(.9) translateY(10px); opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }

@media (prefers-reduced-motion: no-preference) {
  .fade-up { animation: fadeUp .5s both; }
  .float-anim { animation: float 5s ease-in-out infinite; }
  .ring-anim { animation: ring 1.2s ease-in-out infinite; }
  .status-online .dot { animation: pulse 1.8s infinite; }
  .scrim { animation: fadein .25s; }
  .modal-call { animation: pop .3s cubic-bezier(.2,1.3,.5,1); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 820px) {
  .staff-grid { grid-template-columns: 1fr; }
  .hero { padding: 30px 24px; }
}
@media (max-width: 560px) {
  .hdr-in { height: 60px; }
  .nav-link { padding: 7px 8px; }
  .main { padding: 24px 0 90px; }
  .balance .amt { font-size: 50px; }
  .hero-deco { display: none; }
}

/* ===== BOOTSTRAP COMPATIBILITY ===== */
/* Keep Bootstrap utilities working for auth/admin pages */
.d-none { display: none !important; }
.d-flex { display: flex !important; }

/* Bootstrap alert tweaks to match Honey-Noir */
.alert {
  border-radius: 14px;
  font-size: 14px;
  border: 1px solid var(--border);
}
.alert-success { background: var(--ok-bg); border-color: #b2dfca; color: #155724; }
.alert-danger { background: #ffeaea; border-color: #f5c6cb; color: #721c24; }
.alert-warning { background: var(--busy-bg); border-color: #ffc107; color: #856404; }
.alert-info { background: var(--chip); border-color: var(--border); color: var(--ink-soft); }

/* Form controls: keep Bootstrap styles but blend with Honey-Noir */
.form-control {
  border-radius: 12px;
  border-color: var(--border);
  background: var(--surface);
  color: var(--ink);
  font-family: inherit;
}
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(245,163,0,.18);
}
.form-label { font-weight: 600; color: var(--ink); }

/* Input group button compatibility */
.input-group .btn { border-radius: 0 12px 12px 0; }

/* Bootstrap card body - ensure Honey-Noir border-radius is preserved */
.card-body { padding: 1.5rem; }
.card-header {
  background: var(--panel-head);
  color: var(--panel-head-ink);
  border-radius: 24px 24px 0 0 !important;
  font-weight: 800;
  padding: 14px 22px;
  font-family: "Zen Maru Gothic", sans-serif;
}
.card-footer {
  background: transparent;
  border-top: 1px dashed var(--border);
  border-radius: 0 0 24px 24px !important;
  padding: 14px 20px;
}

/* Bootstrap badges for admin/auth pages */
.badge {
  border-radius: 999px;
  font-weight: 700;
  padding: 4px 10px;
}
.bg-success { background: var(--ok) !important; }
.bg-warning { background: var(--primary) !important; }
.bg-secondary { background: var(--off) !important; }
.bg-danger { background: #e23b3b !important; }
.text-warning { color: var(--primary) !important; }
.text-success { color: var(--ok) !important; }
.text-muted { color: var(--ink-soft) !important; }

/* Bootstrap nav tabs for points page */
.nav-tabs .nav-link { color: var(--ink-soft); }
.nav-tabs .nav-link.active { color: var(--primary-ink); }

/* Table tweaks */
.table { color: var(--ink); }
.table th { font-weight: 700; border-color: var(--border); }
.table td { border-color: var(--border); }

/* Spacing utilities */
.mt-4 { margin-top: 1.5rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.py-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }

/* Call page compatibility */
.font-monospace { font-family: "Quicksand", monospace; }
