@charset "UTF-8";
/* --------------------------------------------------
   Main SCSS Entry Point
   Compiles all partials into app.css
   -------------------------------------------------- */
/* -------------------------
   Base (variables MUST be first)
   ------------------------- */
/* scss/base/_variables.scss */
/* ---------------------------------------------
   Color Variables
   --------------------------------------------- */
/* ---------------------------------------------
   Radii
   --------------------------------------------- */
/* ---------------------------------------------
   Shadows
   --------------------------------------------- */
/* ---------------------------------------------
   Typography
   --------------------------------------------- */
/* ---------------------------------------------
   Layout
   --------------------------------------------- */
/* ---------------------------------------------
   Breakpoints
   --------------------------------------------- */
/* ---------------------------------------------
   Theme Maps (optional but powerful)
   --------------------------------------------- */
/* ---------------------------------------------
   Typography Variables
   --------------------------------------------- */
/* ---------------------------------------------
   CSS Variables (exposed to the browser)
   --------------------------------------------- */
/* line 120, ../scss/base/_variables.scss */
:root {
  --border: #e5e7eb;
  --bg-card: #ffffff;
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --radius: 10px;
  /* Add any others you use */
  --text: #1a1a2e;
  --text-muted: #6b7280;
  --brand: #3aafa9;
  --brand-light: #e0f4f3;
  --coral: #e07a5f;
  --teal: #3aafa9;
  --bg: #f9f8fc; }

/* scss/base/_reset.scss */
/* ---------------------------------------------
   Reset
   --------------------------------------------- */
/* line 7, ../scss/base/_reset.scss */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, menu, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset */
/* line 29, ../scss/base/_reset.scss */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block; }

/* line 34, ../scss/base/_reset.scss */
body {
  line-height: 1; }

/* line 38, ../scss/base/_reset.scss */
ol, ul {
  list-style: none; }

/* line 42, ../scss/base/_reset.scss */
blockquote, q {
  quotes: none; }

/* line 46, ../scss/base/_reset.scss */
blockquote::before, blockquote::after,
q::before, q::after {
  content: ''; }

/* line 51, ../scss/base/_reset.scss */
table {
  border-collapse: collapse;
  border-spacing: 0; }

/* scss/base/_globals.scss */
/* ---------------------------------------------
   Reset
   --------------------------------------------- */
/* line 6, ../scss/base/_globals.scss */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0; }

/* ---------------------------------------------
   HTML & Body
   --------------------------------------------- */
/* line 15, ../scss/base/_globals.scss */
html {
  font-size: 15px; }

/* line 19, ../scss/base/_globals.scss */
body {
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  color: #1a1a2e;
  background: #f9f8fc;
  line-height: 1.6;
  min-height: 100vh; }

/* ---------------------------------------------
   Typography
   --------------------------------------------- */
/* line 30, ../scss/base/_globals.scss */
a {
  color: #3aafa9;
  text-decoration: none; }
  /* line 34, ../scss/base/_globals.scss */
  a:hover {
    text-decoration: underline; }

/* line 39, ../scss/base/_globals.scss */
h1 {
  font-size: 1.55rem;
  font-weight: 600; }

/* line 44, ../scss/base/_globals.scss */
h2 {
  font-size: 1.15rem;
  font-weight: 600; }

/* line 49, ../scss/base/_globals.scss */
h3 {
  font-size: 1rem;
  font-weight: 600; }

/* line 54, ../scss/base/_globals.scss */
p {
  color: #6b7280; }

/* ---------------------------------------------
   Utility Classes
   --------------------------------------------- */
/* line 61, ../scss/base/_globals.scss */
.text-center {
  text-align: center; }

/* line 65, ../scss/base/_globals.scss */
.center-all {
  display: flex;
  flex-direction: column;
  align-items: center; }

/* line 71, ../scss/base/_globals.scss */
.muted {
  color: #6b7280;
  background: #f9f8fc; }

/* line 76, ../scss/base/_globals.scss */
.optional {
  color: #6b7280;
  font-weight: 400;
  font-size: 0.85em; }

/* ---------------------------------------------
   Typography
   --------------------------------------------- */
/* line 5, ../scss/base/_typography.scss */
body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  color: #333;
  line-height: 1.5; }

/* line 12, ../scss/base/_typography.scss */
h1, h2, h3, h4, h5, h6 {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #111; }

/* line 19, ../scss/base/_typography.scss */
hr {
  margin: 15px; }

/* line 23, ../scss/base/_typography.scss */
p {
  margin-bottom: 1rem; }

/* line 27, ../scss/base/_typography.scss */
a {
  color: #0066cc;
  text-decoration: none; }
  /* line 31, ../scss/base/_typography.scss */
  a:hover {
    text-decoration: underline; }

/* ---------------------------------------------
   Typography Variables
   --------------------------------------------- */
/* -------------------------
   Layout
   ------------------------- */
/* scss/layout/_header.scss */
/* ---------------------------------------------
   Header Shell
   --------------------------------------------- */
/* line 6, ../scss/layout/_header.scss */
.site-header {
  height: 60px;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 100;
  padding-top: 0 !important; }

/* line 16, ../scss/layout/_header.scss */
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem; }

/* Accent bar */
/* line 27, ../scss/layout/_header.scss */
.top-accent-bar {
  max-width: 1155px;
  margin: 0 auto;
  height: 6px;
  padding-left: 20px;
  padding-right: 20px;
  background-color: #2a8f8a;
  display: flex;
  align-items: center;
  gap: 2rem; }

/* ---------------------------------------------
   Logo
   --------------------------------------------- */
/* line 42, ../scss/layout/_header.scss */
.logo {
  font-weight: 700;
  font-size: 1.1rem;
  color: #3aafa9;
  white-space: nowrap;
  text-decoration: none; }

/* line 50, ../scss/layout/_header.scss */
.logo-short {
  display: none; }

/* ---------------------------------------------
   Main Navigation
   --------------------------------------------- */
/* line 57, ../scss/layout/_header.scss */
.main-nav {
  display: flex;
  gap: 0.25rem;
  flex: 1; }
  /* line 62, ../scss/layout/_header.scss */
  .main-nav a {
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    color: #6b7280;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background .15s, color .15s;
    /* Your new rule */ }
    /* line 70, ../scss/layout/_header.scss */
    .main-nav a:hover, .main-nav a.active {
      background: #e0f4f3;
      color: #3aafa9; }
    /* line 77, ../scss/layout/_header.scss */
    .main-nav a.nav-active {
      color: #3aafa9;
      font-weight: 700;
      border-bottom: 2px solid #3aafa9; }

/* ---------------------------------------------
   Header User Area
   --------------------------------------------- */
/* line 88, ../scss/layout/_header.scss */
.header-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem; }
  /* line 94, ../scss/layout/_header.scss */
  .header-user .user-name {
    font-weight: 500; }
  /* line 98, ../scss/layout/_header.scss */
  .header-user .user-role-badge {
    padding: 2px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase; }
    /* line 105, ../scss/layout/_header.scss */
    .header-user .user-role-badge.instructor {
      background: #e0f4f3;
      color: #3aafa9; }
    /* line 110, ../scss/layout/_header.scss */
    .header-user .user-role-badge.student {
      background: #e0f4f3;
      color: #3aafa9; }

/* Logout button */
/* line 118, ../scss/layout/_header.scss */
.btn-logout {
  padding: 0.3rem 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  color: #6b7280;
  font-size: 0.85rem;
  transition: background .15s; }
  /* line 126, ../scss/layout/_header.scss */
  .btn-logout:hover {
    background: #f9f8fc;
    text-decoration: none; }

/* ---------------------------------------------
   Desktop Navigation Behavior
   --------------------------------------------- */
@media (min-width: 768px) {
  /* line 136, ../scss/layout/_header.scss */
  .nav-wrapper {
    display: flex !important;
    align-items: center;
    background: transparent;
    position: static;
    width: auto;
    padding: 0; }

  /* line 145, ../scss/layout/_header.scss */
  .main-nav {
    display: flex !important;
    flex-direction: row !important;
    gap: 1.5rem;
    margin-left: auto; }
    /* line 151, ../scss/layout/_header.scss */
    .main-nav a {
      padding: 0.5rem 0;
      color: #1a1a2e;
      font-weight: 500; }

  /* line 158, ../scss/layout/_header.scss */
  .mobile-toggle,
  .menu-close {
    display: none !important; } }
/* ---------------------------------------------
   Mobile Navigation Drawer
   --------------------------------------------- */
@media (max-width: 850px) {
  /* line 168, ../scss/layout/_header.scss */
  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    padding: 0 15px; }

  /* line 176, ../scss/layout/_header.scss */
  .nav-wrapper {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100vh;
    background: #ffffff;
    z-index: 9999;
    transition: left 0.3s ease-in-out;
    box-shadow: 4px 0 10px rgba(0, 0, 0, 0.1);
    padding: 80px 20px 20px 20px;
    display: flex !important;
    flex-direction: column; }
    /* line 190, ../scss/layout/_header.scss */
    .nav-wrapper.open {
      left: 0; }

  /* line 195, ../scss/layout/_header.scss */
  .main-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem; }
    /* line 200, ../scss/layout/_header.scss */
    .main-nav a {
      font-size: 1.8rem;
      color: #333;
      font-weight: 500; }

  /* line 207, ../scss/layout/_header.scss */
  .btn-logout-mobile {
    background: #d9534f;
    color: #fff !important;
    padding: 8px 14px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase; }

  /* line 217, ../scss/layout/_header.scss */
  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem !important;
    min-width: 44px;
    min-height: 44px;
    background: transparent;
    border: none;
    color: #333;
    padding: 5px;
    cursor: pointer; }

  /* line 231, ../scss/layout/_header.scss */
  .menu-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2rem;
    background: none;
    border: none;
    color: #333;
    padding: 10px; }

  /* line 242, ../scss/layout/_header.scss */
  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 9998; }

  /* line 253, ../scss/layout/_header.scss */
  .nav-wrapper.open ~ .menu-overlay {
    display: block; } }
/* ---------------------------------------------
   Responsive Logo Swap
   --------------------------------------------- */
@media (max-width: 768px) {
  /* line 262, ../scss/layout/_header.scss */
  .logo-full {
    display: none; }

  /* line 266, ../scss/layout/_header.scss */
  .logo-short {
    display: inline; } }
/* ---------------------------------------------
   Layout: Navigation
   --------------------------------------------- */
/* line 5, ../scss/layout/_nav.scss */
.navbar {
  background: #333;
  color: #fff;
  padding: 1rem; }
  /* line 10, ../scss/layout/_nav.scss */
  .navbar a {
    color: #fff;
    margin-right: 1rem; }
    /* line 14, ../scss/layout/_nav.scss */
    .navbar a:hover {
      text-decoration: underline; }

/* scss/layout/_main.scss */
/* ---------------------------------------------
   Main Content Wrapper
   --------------------------------------------- */
/* line 6, ../scss/layout/_main.scss */
.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem; }

/* ---------------------------------------------
   Page Header
   --------------------------------------------- */
/* line 15, ../scss/layout/_main.scss */
.page-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  gap: 1rem; }
  /* line 22, ../scss/layout/_main.scss */
  .page-header .page-sub {
    color: #6b7280;
    margin-top: 0.2rem; }
  /* line 27, ../scss/layout/_main.scss */
  .page-header .page-actions {
    display: flex;
    gap: 0.5rem; }

/* ---------------------------------------------
   Responsive Adjustments
   --------------------------------------------- */
@media (max-width: 640px) {
  /* line 37, ../scss/layout/_main.scss */
  .page-header {
    flex-direction: column; } }
/* ---------------------------------------------
   Layout: Footer
   --------------------------------------------- */
/* line 5, ../scss/layout/_footer.scss */
.footer {
  background: #f5f5f5;
  padding: 1.5rem;
  text-align: center;
  color: #333;
  margin-top: auto; }

/* line 13, ../scss/layout/_footer.scss */
.site-footer {
  text-align: center;
  padding: 1rem 0;
  color: var(--text-muted);
  font-size: 0.85rem; }

/* line 20, ../scss/layout/_footer.scss */
.footer-inner {
  max-width: 100%;
  margin: 0 auto; }

/* ---------------------------------------------
   Layout: Responsive
   --------------------------------------------- */
@media (max-width: 768px) {
  /* line 6, ../scss/layout/_responsive.scss */
  .navbar {
    padding: 0.5rem; }

  /* line 10, ../scss/layout/_responsive.scss */
  .footer {
    padding: 1rem; } }
/* -------------------------
   Components
   ------------------------- */
/* ---------------------------------------------
   Components: Alerts
   --------------------------------------------- */
/* line 5, ../scss/components/_alerts.scss */
.alert {
  padding: 0.75rem 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  font-weight: 500;
  border: 1px solid transparent; }

/* Success */
/* line 14, ../scss/components/_alerts.scss */
.alert-success {
  background: #e6f7e6;
  color: #2e7d32;
  border-color: #c8e6c9; }

/* Error */
/* line 21, ../scss/components/_alerts.scss */
.alert-error {
  background: #fdecea;
  color: #c62828;
  border-color: #f5c6cb; }

/* Warning */
/* line 28, ../scss/components/_alerts.scss */
.alert-warning {
  background: #fff8e1;
  color: #8a6d3b;
  border-color: #ffecb3; }

/* Info */
/* line 35, ../scss/components/_alerts.scss */
.alert-info {
  background: #e8f4fd;
  color: #31708f;
  border-color: #bce8f1; }

/* scss/components/_badges.scss */
/* ---------------------------------------------
   Base Badge
   --------------------------------------------- */
/* line 6, ../scss/components/_badges.scss */
.badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .03em;
  white-space: nowrap; }

/* ---------------------------------------------
   Color Variants
   --------------------------------------------- */
/* line 20, ../scss/components/_badges.scss */
.badge-primary {
  background: #e0f4f3;
  color: #3aafa9; }

/* line 25, ../scss/components/_badges.scss */
.badge-teal {
  background: #e0f4f3;
  color: #3aafa9; }

/* line 30, ../scss/components/_badges.scss */
.badge-blue {
  background: #0161f7;
  color: #0067b2; }

/* line 35, ../scss/components/_badges.scss */
.badge-coral {
  background: #ffe8e2;
  color: #e07a5f; }

/* line 40, ../scss/components/_badges.scss */
.badge-success {
  background: #dcfce7;
  color: #166534; }

/* line 45, ../scss/components/_badges.scss */
.badge-warning {
  background: #fef9c3;
  color: #854d0e; }

/* line 50, ../scss/components/_badges.scss */
.badge-purple {
  background: #fdfaff;
  color: #9b59b6; }

/* ─── Plan Type Badges ───────────────────────────── */
/* line 57, ../scss/components/_badges.scss */
.plan-type-badge {
  font-size: .72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .04em; }
  /* line 65, ../scss/components/_badges.scss */
  .plan-type-badge.unlimited {
    background: var(--brand-light);
    color: var(--brand); }
  /* line 70, ../scss/components/_badges.scss */
  .plan-type-badge.class_pack {
    background: var(--teal-light);
    color: var(--teal); }
  /* line 75, ../scss/components/_badges.scss */
  .plan-type-badge.drop_in {
    background: #fde8e0;
    color: var(--coral); }
  /* line 80, ../scss/components/_badges.scss */
  .plan-type-badge.private {
    background: #f3e8ff;
    color: #7c3aed; }

/* line 86, ../scss/components/_badges.scss */
.badge-private {
  background: #9b68ce;
  color: #f3e8ff; }

/* scss/components/_buttons.scss */
/* ---------------------------------------------
   Base Button
   --------------------------------------------- */
/* line 6, ../scss/components/_buttons.scss */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.1rem;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  background: #ffffff;
  color: #1a1a2e;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .15s;
  text-decoration: none;
  white-space: nowrap; }
  /* line 22, ../scss/components/_buttons.scss */
  .btn:hover {
    background: #f9f8fc;
    border-color: #d1d5db;
    text-decoration: none; }
  /* line 28, ../scss/components/_buttons.scss */
  .btn.btn-sm {
    padding: 0.3rem 0.75rem;
    font-size: 0.8rem; }
  /* line 33, ../scss/components/_buttons.scss */
  .btn.btn-full {
    width: 100%; }

/* Ensure consistency with existing button utilities */
/* line 38, ../scss/components/_buttons.scss */
.btn-full {
  display: block;
  text-align: center; }

/* ---------------------------------------------
   Primary Button
   --------------------------------------------- */
/* line 46, ../scss/components/_buttons.scss */
.btn-primary {
  background: #c45e44;
  color: #fff;
  border-color: #e07a5f;
  margin-bottom: 3px;
  font-weight: 700; }
  /* line 52, ../scss/components/_buttons.scss */
  .btn-primary:hover {
    background: #e07a5f;
    border-color: #c45e44;
    color: #fff;
    margin-bottom: 3px; }

/* ---------------------------------------------
   Ordinary Button (Coral)
   --------------------------------------------- */
/* line 63, ../scss/components/_buttons.scss */
.btn-ordinary {
  background: #e07a5f;
  color: #fff;
  border-color: #e07a5f; }
  /* line 68, ../scss/components/_buttons.scss */
  .btn-ordinary:hover {
    background: #2a8f8a;
    border-color: #e0f4f3;
    color: #fff; }

/* ---------------------------------------------
   Danger Button
   --------------------------------------------- */
/* line 78, ../scss/components/_buttons.scss */
.btn-danger {
  background: #fef2f2;
  color: #dc2626;
  border-color: #fca5a5; }
  /* line 83, ../scss/components/_buttons.scss */
  .btn-danger:hover {
    background: #fee2e2; }

/* ---------------------------------------------
   Massage Button (Purple)
   --------------------------------------------- */
/* line 91, ../scss/components/_buttons.scss */
.btn-massage {
  background: #9b59b6;
  color: #fff;
  border-color: #f2ddff;
  font-weight: bold; }
  /* line 97, ../scss/components/_buttons.scss */
  .btn-massage:hover {
    background: #f2ddff;
    border-color: #f2ddff;
    color: #232323;
    font-weight: bold; }

/* ---------------------------------------------
   Teal Button Variant
   --------------------------------------------- */
/* line 108, ../scss/components/_buttons.scss */
.btn-teal {
  background: #e0f4f3;
  color: #3aafa9;
  border-color: #3aafa9; }
  /* line 113, ../scss/components/_buttons.scss */
  .btn-teal:hover {
    background: #c6eeec;
    color: #3aafa9; }

/* ---------------------------------------------
   Outline Button
   --------------------------------------------- */
/* line 122, ../scss/components/_buttons.scss */
.btn-outline {
  margin-top: 4px; }

/* ---------------------------------------------
   Date Navigation Button
   --------------------------------------------- */
/* line 129, ../scss/components/_buttons.scss */
.btn-date-nav {
  margin-top: 4px;
  border: 1px solid #3aafa9;
  background: #edf8ff; }

/* ---------------------------------------------
   Mobile Override for .btn-sm
   --------------------------------------------- */
@media (max-width: 850px) {
  /* line 139, ../scss/components/_buttons.scss */
  .btn-sm {
    padding: 0.3rem 0.75rem;
    font-size: 1.8rem; } }
/* line 145, ../scss/components/_buttons.scss */
.btn-private {
  background: #7c3aed;
  color: #fff;
  border: none; }
  /* line 150, ../scss/components/_buttons.scss */
  .btn-private:hover {
    background: #6a2fd8; }

/* scss/components/_calendar.scss */
/* ---------------------------------------------
   Calendar Wrapper
   --------------------------------------------- */
/* line 6, ../scss/components/_calendar.scss */
.calendar {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 1.25rem; }

/* ---------------------------------------------
   Calendar Header
   --------------------------------------------- */
/* line 16, ../scss/components/_calendar.scss */
.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem; }
  /* line 22, ../scss/components/_calendar.scss */
  .calendar-header h2 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0; }
  /* line 28, ../scss/components/_calendar.scss */
  .calendar-header .date-nav {
    display: flex;
    gap: 0.5rem; }

/* ---------------------------------------------
   Calendar Grid
   --------------------------------------------- */
/* line 37, ../scss/components/_calendar.scss */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem; }
  @media (max-width: 640px) {
    /* line 37, ../scss/components/_calendar.scss */
    .calendar-grid {
      gap: 0.35rem; } }

/* ---------------------------------------------
   Calendar Day Cell
   --------------------------------------------- */
/* line 50, ../scss/components/_calendar.scss */
.calendar-day {
  background: #f9f8fc;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 0.75rem;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background .15s, border-color .15s; }
  /* line 63, ../scss/components/_calendar.scss */
  .calendar-day:hover {
    background: #ffffff;
    border-color: #e0f4f3; }
  /* line 68, ../scss/components/_calendar.scss */
  .calendar-day.disabled {
    opacity: 0.4;
    pointer-events: none; }
  /* line 73, ../scss/components/_calendar.scss */
  .calendar-day .day-number {
    font-weight: 600;
    margin-bottom: 0.25rem; }
  /* line 78, ../scss/components/_calendar.scss */
  .calendar-day .day-session {
    margin-top: auto;
    font-size: 0.75rem;
    color: #3aafa9;
    font-weight: 600; }

/* ---------------------------------------------
   Today Highlight
   --------------------------------------------- */
/* line 89, ../scss/components/_calendar.scss */
.calendar-day.today {
  border-color: #3aafa9;
  background: #e0f4f3; }

/* ---------------------------------------------
   Day With Sessions
   --------------------------------------------- */
/* line 97, ../scss/components/_calendar.scss */
.calendar-day.has-session {
  border-color: #3aafa9;
  background: #e0f4f3; }
  /* line 101, ../scss/components/_calendar.scss */
  .calendar-day.has-session .day-session {
    color: #00796b; }

/* scss/components/_cards.scss */
/* ---------------------------------------------
   Stat Cards
   --------------------------------------------- */
/* line 6, ../scss/components/_cards.scss */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem; }
  /* line 12, ../scss/components/_cards.scss */
  .stat-grid.compact {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }

/* line 17, ../scss/components/_cards.scss */
.stat-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 1.25rem 1.5rem; }
  /* line 23, ../scss/components/_cards.scss */
  .stat-card .stat-label {
    font-size: 0.8rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: .04em; }
  /* line 30, ../scss/components/_cards.scss */
  .stat-card .stat-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0.25rem 0; }
  /* line 37, ../scss/components/_cards.scss */
  .stat-card .stat-sub {
    font-size: 0.8rem;
    color: #6b7280; }
    /* line 41, ../scss/components/_cards.scss */
    .stat-card .stat-sub a {
      color: #3aafa9; }

/* ---------------------------------------------
   thumbnail images
   --------------------------------------------- */
/* line 50, ../scss/components/_cards.scss */
.thumbnail-card {
  width: 140px;
  height: 140px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  background: #ffffff;
  transition: transform 0.2s ease, border-color 0.2s ease; }
  /* line 59, ../scss/components/_cards.scss */
  .thumbnail-card:hover {
    transform: translateY(-3px);
    border-color: #3aafa9;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); }
  /* line 65, ../scss/components/_cards.scss */
  .thumbnail-card img {
    width: 100%;
    height: 100%;
    object-fit: cover; }

/* ---------------------------------------------
   Dashboard Sections
   --------------------------------------------- */
/* line 75, ../scss/components/_cards.scss */
.dashboard-section {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1.5rem; }
  /* line 82, ../scss/components/_cards.scss */
  .dashboard-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem; }
  /* line 89, ../scss/components/_cards.scss */
  .dashboard-section .section-link {
    font-size: 0.85rem;
    color: #3aafa9; }

/* ---------------------------------------------
   Class Cards
   --------------------------------------------- */
/* line 98, ../scss/components/_cards.scss */
.class-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem; }

/* line 104, ../scss/components/_cards.scss */
.class-card {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  flex-direction: column; }
  /* line 112, ../scss/components/_cards.scss */
  .class-card .class-card-header {
    background: #e0f4f3;
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #0067b2;
    font-weight: 600; }
  /* line 122, ../scss/components/_cards.scss */
  .class-card .class-card-body {
    padding: 1rem;
    flex: 1; }
    /* line 126, ../scss/components/_cards.scss */
    .class-card .class-card-body .class-title {
      font-size: 1rem;
      margin-bottom: 0.4rem;
      color: #1a1a2e; }
    /* line 132, ../scss/components/_cards.scss */
    .class-card .class-card-body .class-meta {
      display: flex;
      gap: 0.4rem;
      flex-wrap: wrap;
      margin-bottom: 0.5rem; }
    /* line 139, ../scss/components/_cards.scss */
    .class-card .class-card-body .class-loc {
      font-size: 0.8rem;
      color: #6b7280; }
    /* line 144, ../scss/components/_cards.scss */
    .class-card .class-card-body .class-spots {
      font-size: 0.8rem;
      color: #3aafa9;
      font-weight: 500;
      margin-top: 0.3rem; }
  /* line 152, ../scss/components/_cards.scss */
  .class-card .class-card-foot {
    padding: 0.75rem 1rem;
    border-top: 1px solid #e5e7eb; }

/* ---------------------------------------------
   Membership Cards
   --------------------------------------------- */
/* line 161, ../scss/components/_cards.scss */
.membership-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px; }
  /* line 170, ../scss/components/_cards.scss */
  .membership-card.active {
    background: #e0f4f3;
    border-color: #3aafa9; }
  /* line 175, ../scss/components/_cards.scss */
  .membership-card.inactive {
    background: #f9f8fc; }
  /* line 179, ../scss/components/_cards.scss */
  .membership-card .mem-plan-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: #0093ff;
    margin-bottom: 0.25rem; }
  /* line 186, ../scss/components/_cards.scss */
  .membership-card .mem-details {
    flex: 1;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center; }
    @media (max-width: 640px) {
      /* line 186, ../scss/components/_cards.scss */
      .membership-card .mem-details {
        flex-direction: column;
        gap: 1rem; } }
  /* line 199, ../scss/components/_cards.scss */
  .membership-card .mem-stat {
    font-size: 0.9rem;
    color: #1a1a2e;
    display: flex;
    flex-direction: column; }
    /* line 205, ../scss/components/_cards.scss */
    .membership-card .mem-stat strong {
      font-size: 1.4rem; }
    /* line 209, ../scss/components/_cards.scss */
    .membership-card .mem-stat .label {
      font-size: 0.75rem;
      text-transform: uppercase;
      color: #6b7280;
      letter-spacing: 0.05em;
      margin-bottom: 4px; }

/* Mem-strip */
/* line 220, ../scss/components/_cards.scss */
.mem-strip {
  display: flex;
  padding: .75rem 1rem;
  background: #e0f4f3;
  border: 1px solid #3aafa9;
  border-radius: 6px;
  margin-bottom: 1.25rem;
  font-size: .875rem; }
  /* line 229, ../scss/components/_cards.scss */
  .mem-strip .mem-strip-name {
    display: block;
    margin-bottom: 2px;
    font-weight: bold;
    font-size: 16px; }
  @media (max-width: 600px) {
    /* line 237, ../scss/components/_cards.scss */
    .mem-strip .mem-strip-detail {
      display: block;
      font-size: 0.8rem; } }

/* ---------------------------------------------
   Plan Cards
   --------------------------------------------- */
/* line 247, ../scss/components/_cards.scss */
.plan-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem; }

/* line 254, ../scss/components/_cards.scss */
.plan-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.15s ease; }
  /* line 263, ../scss/components/_cards.scss */
  .plan-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); }
  /* line 268, ../scss/components/_cards.scss */
  .plan-card .plan-card-header {
    padding: 1rem;
    background: #f9f8fc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e7eb; }
    /* line 276, ../scss/components/_cards.scss */
    .plan-card .plan-card-header .plan-price {
      font-weight: 700;
      color: #3aafa9;
      font-size: 1.1rem; }
  /* line 283, ../scss/components/_cards.scss */
  .plan-card .plan-card-body {
    padding: 1.25rem;
    flex: 1; }
    /* line 287, ../scss/components/_cards.scss */
    .plan-card .plan-card-body h3 {
      margin-bottom: 0.5rem;
      color: #1a1a2e; }
    /* line 292, ../scss/components/_cards.scss */
    .plan-card .plan-card-body .plan-meta {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
      margin-bottom: 1rem; }
      /* line 298, ../scss/components/_cards.scss */
      .plan-card .plan-card-body .plan-meta span {
        font-size: 0.85rem;
        color: #6b7280;
        font-weight: 500; }
    /* line 305, ../scss/components/_cards.scss */
    .plan-card .plan-card-body .plan-desc {
      font-size: 0.875rem;
      line-height: 1.4; }
  /* line 311, ../scss/components/_cards.scss */
  .plan-card .plan-card-foot {
    padding: 1rem;
    border-top: 1px solid #e5e7eb;
    background: #ffffff; }
  /* line 317, ../scss/components/_cards.scss */
  .plan-card .plan-type-badge {
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px; }
    /* line 324, ../scss/components/_cards.scss */
    .plan-card .plan-type-badge.unlimited {
      background: #dcfce7;
      color: #166534; }
    /* line 329, ../scss/components/_cards.scss */
    .plan-card .plan-type-badge.class_pack {
      background: #eff6ff;
      color: #1d4ed8; }

/* line 335, ../scss/components/_cards.scss */
.stat-card.clickable {
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer; }
  /* line 340, ../scss/components/_cards.scss */
  .stat-card.clickable:hover {
    border-color: #3aafa9;
    background: #e0f4f3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); }

/* ---------------------------------------------
   Session Cards (Horizontal)
   --------------------------------------------- */
/* line 350, ../scss/components/_cards.scss */
.session-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 1rem; }

/* line 357, ../scss/components/_cards.scss */
.session-card {
  background: #f9f8fc;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between; }
  /* line 366, ../scss/components/_cards.scss */
  .session-card .session-card-time {
    font-size: 0.85rem;
    font-weight: 600;
    color: #3aafa9;
    margin-bottom: 0.5rem; }
  /* line 374, ../scss/components/_cards.scss */
  .session-card .session-card-info strong {
    display: block;
    font-size: 1rem;
    color: #1a1a2e; }
  /* line 381, ../scss/components/_cards.scss */
  .session-card .session-card-actions {
    margin-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 0.75rem; }

/* ---------------------------------------------
   Session List Rows
   --------------------------------------------- */
/* line 391, ../scss/components/_cards.scss */
.session-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem; }

/* line 397, ../scss/components/_cards.scss */
.session-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: #f9f8fc;
  border-radius: 6px;
  flex-wrap: wrap; }
  /* line 406, ../scss/components/_cards.scss */
  .session-row .session-time {
    font-size: 0.8rem;
    font-weight: bold;
    color: #6b7280;
    min-width: 160px; }
  /* line 413, ../scss/components/_cards.scss */
  .session-row .session-info {
    flex: 1; }
    /* line 416, ../scss/components/_cards.scss */
    .session-row .session-info strong {
      display: block;
      color: #1a1a2e; }
    /* line 421, ../scss/components/_cards.scss */
    .session-row .session-info .muted {
      font-size: 0.8rem;
      color: #6b7280; }
  /* line 427, ../scss/components/_cards.scss */
  .session-row .spots-badge {
    font-size: 0.8rem;
    padding: 2px 10px;
    border-radius: 999px;
    background: #dcfce7;
    color: #166534; }
    /* line 434, ../scss/components/_cards.scss */
    .session-row .spots-badge.full {
      background: #fee2e2;
      color: #991b1b; }

/* ---------------------------------------------
   Promo Banner
   --------------------------------------------- */
/* line 444, ../scss/components/_cards.scss */
.massage-promo-banner {
  margin-top: 1rem;
  padding: 1rem;
  background: #fdfaff;
  border: 1px solid #e9dcf5;
  border-left: 4px solid #9b59b6;
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 25px; }
  /* line 457, ../scss/components/_cards.scss */
  .massage-promo-banner .promo-content {
    display: flex;
    align-items: center;
    gap: 0.75rem; }
    /* line 462, ../scss/components/_cards.scss */
    .massage-promo-banner .promo-content p {
      margin: 0;
      font-size: 0.85rem;
      color: #6b7280; }
  /* line 469, ../scss/components/_cards.scss */
  .massage-promo-banner .promo-icon {
    font-size: 1.5rem; }
  @media (max-width: 600px) {
    /* line 444, ../scss/components/_cards.scss */
    .massage-promo-banner {
      flex-direction: column;
      align-items: flex-start; } }

/* ─── Membership Plan Cards ───────────────────────────── */
/* line 481, ../scss/components/_cards.scss */
.plan-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem; }

/* line 487, ../scss/components/_cards.scss */
.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  overflow: hidden; }

/* line 496, ../scss/components/_cards.scss */
.plan-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .75rem 1rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border); }

/* line 505, ../scss/components/_cards.scss */
.plan-card-body {
  padding: 1rem;
  flex: 1; }
  /* line 509, ../scss/components/_cards.scss */
  .plan-card-body h3 {
    margin-bottom: .4rem; }

/* line 514, ../scss/components/_cards.scss */
.plan-card-foot {
  padding: .75rem 1rem;
  border-top: 1px solid var(--border); }

/* Membership status card */
/* line 520, ../scss/components/_cards.scss */
.membership-status-card {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  background: var(--blue-light);
  border: 1px solid var(--blue); }

/* ─── Plan Card Typography ───────────────────────────── */
/* line 534, ../scss/components/_cards.scss */
.plans-subheading {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: .75rem;
  color: var(--text); }

/* line 541, ../scss/components/_cards.scss */
.plan-price {
  font-size: 1.3rem;
  font-weight: 700; }

/* line 546, ../scss/components/_cards.scss */
.plan-meta {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  font-size: .8rem;
  color: var(--text-muted);
  margin-bottom: .5rem; }
  /* line 554, ../scss/components/_cards.scss */
  .plan-meta span::before {
    content: "• "; }
  /* line 558, ../scss/components/_cards.scss */
  .plan-meta span:first-child::before {
    content: ""; }

/* line 563, ../scss/components/_cards.scss */
.plan-desc {
  font-size: .85rem;
  color: var(--text-muted); }

/*split screen cards*/
/* line 569, ../scss/components/_cards.scss */
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start; }

@media (max-width: 700px) {
  /* line 576, ../scss/components/_cards.scss */
  .detail-layout {
    grid-template-columns: 1fr; } }
/* ─── Membership Cards ───────────────────────────── */
/* line 580, ../scss/components/_cards.scss */
.membership-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  padding: 1rem; }
  /* line 586, ../scss/components/_cards.scss */
  .membership-card.active {
    border-top: 1px solid var(--border);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border); }
  /* line 592, ../scss/components/_cards.scss */
  .membership-card--group {
    border-left: 5px solid var(--brand);
    background: var(--blue-light); }
  /* line 597, ../scss/components/_cards.scss */
  .membership-card--private {
    border-left: 5px solid #7c3aed;
    background: #faf5ff; }

/* line 603, ../scss/components/_cards.scss */
.mem-details {
  display: flex;
  flex-direction: column;
  gap: 1rem; }

/* line 609, ../scss/components/_cards.scss */
.mem-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem; }

/* line 617, ../scss/components/_cards.scss */
.mem-plan {
  flex: 1;
  min-width: 250px; }

/* line 622, ../scss/components/_cards.scss */
.mem-plan-desc {
  font-size: .85rem;
  margin-top: 8px;
  max-width: 400px; }

/* line 628, ../scss/components/_cards.scss */
.mem-actions {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 1rem;
  margin-top: .5rem; }

/* line 634, ../scss/components/_cards.scss */
.infinity {
  font-size: 1.8rem;
  line-height: 1; }

/* line 639, ../scss/components/_cards.scss */
.membership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1rem; }

/* line 645, ../scss/components/_cards.scss */
.membership-card,
.mem-details,
.mem-plan,
.mem-stat,
.mem-actions {
  text-align: left; }

/* scss/components/_flash.scss */
/* ---------------------------------------------
   Flash Messages
   --------------------------------------------- */
/* line 6, ../scss/components/_flash.scss */
.flash {
  padding: 0.8rem 1rem;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  border-left: 3px solid; }
  /* line 13, ../scss/components/_flash.scss */
  .flash.success {
    background: #ecfdf5;
    color: #059669;
    border-color: #059669; }
  /* line 19, ../scss/components/_flash.scss */
  .flash.error {
    background: #fef2f2;
    color: #dc2626;
    border-color: #dc2626; }
  /* line 25, ../scss/components/_flash.scss */
  .flash.notice {
    background: #eff6ff;
    color: #1d4ed8;
    border-color: #1d4ed8; }

/* scss/components/_forms.scss */
/* ---------------------------------------------
   Form Fields
   --------------------------------------------- */
/* line 6, ../scss/components/_forms.scss */
.field {
  margin-bottom: 1rem; }

/* line 10, ../scss/components/_forms.scss */
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem; }
  /* line 15, ../scss/components/_forms.scss */
  .field-row.thirds {
    grid-template-columns: 2fr 1fr 1fr; }
  /* line 19, ../scss/components/_forms.scss */
  .field-row .field-hint {
    font-size: 12px; }
  @media (max-width: 640px) {
    /* line 10, ../scss/components/_forms.scss */
    .field-row {
      grid-template-columns: 1fr; } }

/* ---------------------------------------------
   Labels
   --------------------------------------------- */
/* line 31, ../scss/components/_forms.scss */
label {
  display: block;
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0.55rem; }

/* ---------------------------------------------
   Inputs, Selects, Textareas
   --------------------------------------------- */
/* line 41, ../scss/components/_forms.scss */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="date"],
input[type="time"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  font-size: 0.9rem;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  color: #1a1a2e;
  background: #ffffff;
  transition: border-color .15s, box-shadow .15s;
  appearance: none; }
  /* line 61, ../scss/components/_forms.scss */
  input[type="text"]:focus,
  input[type="email"]:focus,
  input[type="password"]:focus,
  input[type="tel"]:focus,
  input[type="date"]:focus,
  input[type="time"]:focus,
  input[type="number"]:focus,
  select:focus,
  textarea:focus {
    outline: none;
    border-color: #3aafa9;
    box-shadow: 0 0 0 3px rgba(107, 91, 149, 0.15); }

/* line 68, ../scss/components/_forms.scss */
textarea {
  resize: vertical;
  min-height: 100px; }

/* line 73, ../scss/components/_forms.scss */
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem; }

/* ---------------------------------------------
   Checkbox Fields
   --------------------------------------------- */
/* line 84, ../scss/components/_forms.scss */
.checkbox-field label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 400;
  cursor: pointer; }
/* line 92, ../scss/components/_forms.scss */
.checkbox-field input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0; }

/* ---------------------------------------------
   Required Indicator
   --------------------------------------------- */
/* line 102, ../scss/components/_forms.scss */
.req {
  color: #dc2626; }

/* ---------------------------------------------
   Form Card
   --------------------------------------------- */
/* line 109, ../scss/components/_forms.scss */
.form-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 1.5rem 2rem;
  margin-bottom: 1.5rem; }
  /* line 116, ../scss/components/_forms.scss */
  .form-card h2 {
    margin-bottom: 1.25rem; }

/* ---------------------------------------------
   Form Actions
   --------------------------------------------- */
/* line 124, ../scss/components/_forms.scss */
.form-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid #e5e7eb; }

/* scss/components/_lists.scss */
/* ---------------------------------------------
   Base List
   --------------------------------------------- */
/* line 6, ../scss/components/_lists.scss */
.list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem; }
  /* line 11, ../scss/components/_lists.scss */
  .list.compact {
    gap: 0.4rem; }
  /* line 16, ../scss/components/_lists.scss */
  .list.divided .list-item {
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e5e7eb; }
    /* line 20, ../scss/components/_lists.scss */
    .list.divided .list-item:last-child {
      border-bottom: none;
      padding-bottom: 0; }
  /* line 28, ../scss/components/_lists.scss */
  .list.clickable .list-item {
    cursor: pointer;
    transition: background .15s; }
    /* line 32, ../scss/components/_lists.scss */
    .list.clickable .list-item:hover {
      background: #f9f8fc; }

/* ---------------------------------------------
   List Item
   --------------------------------------------- */
/* line 42, ../scss/components/_lists.scss */
.list-item {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between; }
  /* line 48, ../scss/components/_lists.scss */
  .list-item .item-label {
    font-size: 0.9rem;
    color: #1a1a2e; }
  /* line 53, ../scss/components/_lists.scss */
  .list-item .item-sub {
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 2px; }
  /* line 59, ../scss/components/_lists.scss */
  .list-item .item-actions {
    display: flex;
    gap: 0.4rem;
    white-space: nowrap; }

/* scss/components/_modals.scss */
/* ---------------------------------------------
   Modal Overlay
   --------------------------------------------- */
/* line 6, ../scss/components/_modals.scss */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 2000; }
  /* line 16, ../scss/components/_modals.scss */
  .modal.open {
    display: flex; }

/* ---------------------------------------------
   Modal Content
   --------------------------------------------- */
/* line 24, ../scss/components/_modals.scss */
.modal-content {
  background: #ffffff;
  border-radius: 10px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  animation: modalFadeIn .25s ease; }
@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
/* ---------------------------------------------
   Modal Header
   --------------------------------------------- */
/* line 42, ../scss/components/_modals.scss */
.modal-header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center; }
  /* line 49, ../scss/components/_modals.scss */
  .modal-header h2 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0; }
  /* line 55, ../scss/components/_modals.scss */
  .modal-header .modal-close {
    background: none;
    border: none;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    color: #6b7280;
    padding: 0.25rem; }
    /* line 64, ../scss/components/_modals.scss */
    .modal-header .modal-close:hover {
      color: #1a1a2e; }

/* ---------------------------------------------
   Modal Body
   --------------------------------------------- */
/* line 73, ../scss/components/_modals.scss */
.modal-body {
  padding: 1.25rem;
  font-size: 0.95rem;
  color: #1a1a2e; }
  /* line 78, ../scss/components/_modals.scss */
  .modal-body p {
    margin-bottom: 1rem; }

/* ---------------------------------------------
   Modal Actions
   --------------------------------------------- */
/* line 86, ../scss/components/_modals.scss */
.modal-actions {
  padding: 1rem 1.25rem;
  border-top: 1px solid #e5e7eb;
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem; }

/* scss/components/_pagination.scss */
/* ---------------------------------------------
   Pagination
   --------------------------------------------- */
/* line 6, ../scss/components/_pagination.scss */
.pagination {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  font-size: 0.9rem; }
  /* line 13, ../scss/components/_pagination.scss */
  .pagination a,
  .pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    background: #ffffff;
    color: #1a1a2e;
    text-decoration: none;
    min-width: 36px;
    transition: background .15s, border-color .15s; }
    /* line 27, ../scss/components/_pagination.scss */
    .pagination a:hover,
    .pagination span:hover {
      background: #f9f8fc;
      border-color: #d1d5db; }
  /* line 33, ../scss/components/_pagination.scss */
  .pagination .active {
    background: #3aafa9;
    border-color: #3aafa9;
    color: #fff;
    font-weight: 600; }
    /* line 39, ../scss/components/_pagination.scss */
    .pagination .active:hover {
      background: #2a8f8a;
      border-color: #2a8f8a; }
  /* line 45, ../scss/components/_pagination.scss */
  .pagination .disabled {
    opacity: 0.4;
    pointer-events: none; }

/* ---------------------------------------------
   Responsive
   --------------------------------------------- */
@media (max-width: 640px) {
  /* line 55, ../scss/components/_pagination.scss */
  .pagination {
    gap: 0.25rem; }
    /* line 58, ../scss/components/_pagination.scss */
    .pagination a,
    .pagination span {
      padding: 0.4rem 0.6rem;
      min-width: 32px;
      font-size: 0.85rem; } }
/* scss/components/_tables.scss */
/* ---------------------------------------------
   Data Table
   --------------------------------------------- */
/* line 6, ../scss/components/_tables.scss */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem; }
  /* line 11, ../scss/components/_tables.scss */
  .data-table th {
    text-align: left;
    padding: 0.6rem 0.75rem;
    border-bottom: 2px solid #e5e7eb;
    color: #6b7280;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: .04em; }
  /* line 22, ../scss/components/_tables.scss */
  .data-table td {
    padding: 0.75rem;
    border-bottom: 1px solid #e5e7eb;
    vertical-align: middle; }
  /* line 28, ../scss/components/_tables.scss */
  .data-table tr:last-child td {
    border-bottom: none; }
  /* line 32, ../scss/components/_tables.scss */
  .data-table tr:hover td {
    background: #f9f8fc; }

/* ---------------------------------------------
   Data Card (Table Wrapper)
   --------------------------------------------- */
/* line 40, ../scss/components/_tables.scss */
.data-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1.5rem; }
  /* line 47, ../scss/components/_tables.scss */
  .data-card .data-table {
    margin: 0; }

/* ---------------------------------------------
   Actions Cell
   --------------------------------------------- */
/* line 55, ../scss/components/_tables.scss */
.actions-cell {
  white-space: nowrap;
  display: flex;
  gap: 0.4rem;
  align-items: center; }

/* scss/components/_utilities.scss */
/* ---------------------------------------------
   Spacing Utilities
   --------------------------------------------- */
/* line 6, ../scss/components/_utilities.scss */
.mt-0 {
  margin-top: 0 !important; }

/* line 7, ../scss/components/_utilities.scss */
.mt-1 {
  margin-top: 0.5rem !important; }

/* line 8, ../scss/components/_utilities.scss */
.mt-2 {
  margin-top: 1rem !important; }

/* line 9, ../scss/components/_utilities.scss */
.mt-3 {
  margin-top: 1.5rem !important; }

/* line 11, ../scss/components/_utilities.scss */
.mb-0 {
  margin-bottom: 0 !important; }

/* line 12, ../scss/components/_utilities.scss */
.mb-1 {
  margin-bottom: 0.5rem !important; }

/* line 13, ../scss/components/_utilities.scss */
.mb-2 {
  margin-bottom: 1rem !important; }

/* line 14, ../scss/components/_utilities.scss */
.mb-3 {
  margin-bottom: 1.5rem !important; }

/* line 16, ../scss/components/_utilities.scss */
.pt-0 {
  padding-top: 0 !important; }

/* line 17, ../scss/components/_utilities.scss */
.pt-1 {
  padding-top: 0.5rem !important; }

/* line 18, ../scss/components/_utilities.scss */
.pt-2 {
  padding-top: 1rem !important; }

/* line 20, ../scss/components/_utilities.scss */
.pb-0 {
  padding-bottom: 0 !important; }

/* line 21, ../scss/components/_utilities.scss */
.pb-1 {
  padding-bottom: 0.5rem !important; }

/* line 22, ../scss/components/_utilities.scss */
.pb-2 {
  padding-bottom: 1rem !important; }

/* line 24, ../scss/components/_utilities.scss */
.mt-7 {
  margin-top: 1.75rem !important; }

/* line 25, ../scss/components/_utilities.scss */
.mb-4 {
  margin-bottom: 1rem !important; }

/* ---------------------------------------------
   Text Utilities
   --------------------------------------------- */
/* line 30, ../scss/components/_utilities.scss */
.text-muted {
  color: #6b7280 !important; }

/* line 31, ../scss/components/_utilities.scss */
.text-center {
  text-align: center !important; }

/* line 32, ../scss/components/_utilities.scss */
.text-right {
  text-align: right !important; }

/* line 33, ../scss/components/_utilities.scss */
.text-bold {
  font-weight: 600 !important; }

/* line 34, ../scss/components/_utilities.scss */
.text-muted-sm {
  font-size: .875rem;
  color: var(--text-muted); }

/* line 39, ../scss/components/_utilities.scss */
.text-error {
  color: var(--error); }

/* ---------------------------------------------
   Layout Utilities
   --------------------------------------------- */
/* line 46, ../scss/components/_utilities.scss */
.flex {
  display: flex !important; }

/* line 50, ../scss/components/_utilities.scss */
.flex-center {
  display: flex !important;
  align-items: center;
  justify-content: center; }

/* line 56, ../scss/components/_utilities.scss */
.flex-between {
  display: flex !important;
  justify-content: space-between;
  align-items: center; }

/* line 62, ../scss/components/_utilities.scss */
.grid-2 {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem; }

/* line 68, ../scss/components/_utilities.scss */
.grid-3 {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem; }

/* ---------------------------------------------
   Width Utilities
   --------------------------------------------- */
/* line 77, ../scss/components/_utilities.scss */
.w-100 {
  width: 100% !important; }

/* line 78, ../scss/components/_utilities.scss */
.w-auto {
  width: auto !important; }

/* ---------------------------------------------
   Visibility Utilities
   --------------------------------------------- */
@media (max-width: 640px) {
  /* line 83, ../scss/components/_utilities.scss */
  .hide-sm {
    display: none !important; } }

/* line 89, ../scss/components/_utilities.scss */
.show-sm {
  display: none !important; }
  @media (max-width: 640px) {
    /* line 89, ../scss/components/_utilities.scss */
    .show-sm {
      display: block !important; } }

/* line 97, ../scss/components/_utilities.scss */
.hidden {
  display: none; }

/* line 100, ../scss/components/_utilities.scss */
.mt-1 {
  margin-top: 1rem; }

/* line 104, ../scss/components/_utilities.scss */
.stack-vert-4 {
  display: flex;
  flex-direction: column;
  gap: 1rem; }

/* line 110, ../scss/components/_utilities.scss */
.text-white {
  color: #fff; }

/* line 114, ../scss/components/_utilities.scss */
.plans-discovery {
  display: none;
  margin-top: 1.5rem; }

/* Plans discovery toggle */
/* line 120, ../scss/components/_utilities.scss */
.plans-discovery {
  display: none;
  margin-top: 1.5rem; }

/* line 125, ../scss/components/_utilities.scss */
.plans-discovery.is-open {
  display: block; }

/* -------------------------
   Pages
   ------------------------- */
/* scss/pages/_pages.scss */
/* ---------------------------------------------
   Dashboard Page
   --------------------------------------------- */
/* line 7, ../scss/pages/_pages.scss */
.page-dashboard .dashboard-welcome {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.25rem; }
/* line 13, ../scss/pages/_pages.scss */
.page-dashboard .dashboard-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem; }
  @media (max-width: 768px) {
    /* line 13, ../scss/pages/_pages.scss */
    .page-dashboard .dashboard-sections {
      grid-template-columns: 1fr; } }

/* ---------------------------------------------
   Profile Page
   --------------------------------------------- */
/* line 28, ../scss/pages/_pages.scss */
.page-profile .profile-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem; }
  @media (max-width: 640px) {
    /* line 28, ../scss/pages/_pages.scss */
    .page-profile .profile-header {
      flex-direction: column;
      text-align: center; } }
/* line 40, ../scss/pages/_pages.scss */
.page-profile .profile-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #f9f8fc;
  border: 1px solid #e5e7eb; }

/* ---------------------------------------------
   Memberships Page
   --------------------------------------------- */
/* line 53, ../scss/pages/_pages.scss */
.page-memberships .membership-list {
  display: flex;
  flex-direction: column;
  gap: 1rem; }

/* ---------------------------------------------
   Class Schedule Page
   --------------------------------------------- */
/* line 64, ../scss/pages/_pages.scss */
.page-schedule .schedule-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem; }
  @media (max-width: 640px) {
    /* line 64, ../scss/pages/_pages.scss */
    .page-schedule .schedule-header {
      flex-direction: column;
      gap: 0.75rem; } }

/* ---------------------------------------------
   Sessions Page
   --------------------------------------------- */
/* line 81, ../scss/pages/_pages.scss */
.page-sessions .session-list {
  margin-top: 1rem; }

/* ---------------------------------------------
   Generic Page Spacing
   --------------------------------------------- */
/* line 89, ../scss/pages/_pages.scss */
.page-section {
  margin-bottom: 2rem; }

/* ---------------------------------------------
   Page-Specific Overrides
   --------------------------------------------- */
/* ---------------------------------------------
   Page: Weekly Schedule Grid /portal/admin/sessions.cfm
   --------------------------------------------- */
/* line 9, ../scss/pages/_page-specific.scss */
.week-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 1.5rem; }
  @media (max-width: 700px) {
    /* line 9, ../scss/pages/_page-specific.scss */
    .week-grid {
      grid-template-columns: 1fr; } }

/* line 24, ../scss/pages/_page-specific.scss */
.day-col {
  background: var(--bg-card);
  min-height: 180px; }
  /* line 28, ../scss/pages/_page-specific.scss */
  .day-col.today {
    background: #faf9ff; }

/* line 33, ../scss/pages/_page-specific.scss */
.day-header {
  padding: 0.5rem 0.6rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center; }

/* line 41, ../scss/pages/_page-specific.scss */
.day-name {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted); }

/* line 48, ../scss/pages/_page-specific.scss */
.day-num {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text); }
  /* line 53, ../scss/pages/_page-specific.scss */
  .day-num.today-num {
    background: var(--brand);
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem; }

/* line 66, ../scss/pages/_page-specific.scss */
.day-sessions {
  padding: 0.4rem; }

/* line 70, ../scss/pages/_page-specific.scss */
.session-block {
  background: var(--brand-light);
  border-left: 3px solid var(--brand);
  border-radius: 4px;
  padding: 0.4rem 0.5rem;
  margin-bottom: 0.4rem;
  font-size: 0.75rem; }
  /* line 78, ../scss/pages/_page-specific.scss */
  .session-block.cancelled {
    background: #f3f4f6;
    border-color: #9ca3af;
    opacity: 0.7; }
  /* line 84, ../scss/pages/_page-specific.scss */
  .session-block.full {
    border-color: var(--coral); }
  /* line 88, ../scss/pages/_page-specific.scss */
  .session-block.massage-block {
    background: #fdf2f8;
    border-left: 3px solid #ec4899; }
  /* line 93, ../scss/pages/_page-specific.scss */
  .session-block.pending-block {
    background: #fefce8;
    border-left: 3px solid #eab308; }

/* line 99, ../scss/pages/_page-specific.scss */
.sb-time {
  color: var(--brand);
  font-weight: 600; }

/* line 104, ../scss/pages/_page-specific.scss */
.sb-title {
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

/* line 112, ../scss/pages/_page-specific.scss */
.sb-loc {
  color: var(--text-muted);
  font-size: 0.7rem; }

/* line 117, ../scss/pages/_page-specific.scss */
.sb-recur {
  color: var(--teal);
  font-size: 0.7rem;
  margin-top: 0.1rem; }

/* line 123, ../scss/pages/_page-specific.scss */
.sb-spots {
  color: var(--text-muted); }

/* line 127, ../scss/pages/_page-specific.scss */
.cancelled-label {
  color: #9ca3af;
  font-style: italic; }

/* line 132, ../scss/pages/_page-specific.scss */
.sb-actions {
  margin-top: 0.2rem; }
  /* line 135, ../scss/pages/_page-specific.scss */
  .sb-actions a {
    color: var(--brand);
    font-size: 0.7rem; }

/* line 141, ../scss/pages/_page-specific.scss */
.day-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px; }

/* line 148, ../scss/pages/_page-specific.scss */
.add-session-link {
  font-size: 1.2rem;
  color: var(--border);
  text-decoration: none;
  transition: color 0.15s; }
  /* line 154, ../scss/pages/_page-specific.scss */
  .add-session-link:hover {
    color: var(--brand); }

/* ---------------------------------------------
   Recurring UI
   --------------------------------------------- */
/* line 163, ../scss/pages/_page-specific.scss */
.recur-toggle-wrap {
  margin-bottom: 0.5rem; }

/* line 167, ../scss/pages/_page-specific.scss */
.toggle-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  font-weight: 500; }
  /* line 174, ../scss/pages/_page-specific.scss */
  .toggle-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--brand); }

/* line 182, ../scss/pages/_page-specific.scss */
.toggle-text {
  font-size: 0.9rem; }

/* line 186, ../scss/pages/_page-specific.scss */
.recur-section {
  margin-bottom: 0.5rem; }

/* line 190, ../scss/pages/_page-specific.scss */
.field-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.5rem; }

/* line 197, ../scss/pages/_page-specific.scss */
.day-picker {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap; }

/* line 203, ../scss/pages/_page-specific.scss */
.day-pill {
  cursor: pointer; }
  /* line 206, ../scss/pages/_page-specific.scss */
  .day-pill input[type="checkbox"] {
    display: none; }
  /* line 210, ../scss/pages/_page-specific.scss */
  .day-pill span {
    display: inline-block;
    padding: 0.35rem 0.7rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: all 0.15s;
    user-select: none; }
  /* line 222, ../scss/pages/_page-specific.scss */
  .day-pill input:checked + span {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand); }
  /* line 228, ../scss/pages/_page-specific.scss */
  .day-pill:hover span {
    border-color: var(--brand);
    color: var(--brand); }

/* Status Pills */
/* line 235, ../scss/pages/_page-specific.scss */
.sb-status-pill {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.1rem 0.4rem;
  border-radius: 20px;
  margin-top: 0.2rem;
  text-transform: capitalize; }

/* line 245, ../scss/pages/_page-specific.scss */
.status-confirmed {
  background: #d1fae5;
  color: #065f46; }

/* line 250, ../scss/pages/_page-specific.scss */
.status-pending {
  background: #fef9c3;
  color: #854d0e; }

/* line 255, ../scss/pages/_page-specific.scss */
.status-completed {
  background: #e0e7ff;
  color: #3730a3; }

/* line 260, ../scss/pages/_page-specific.scss */
.sb-cancel-link {
  color: var(--coral); }
  /* line 263, ../scss/pages/_page-specific.scss */
  .sb-cancel-link:hover {
    color: var(--brand); }

/* line 268, ../scss/pages/_page-specific.scss */
.link-small {
  font-size: 0.7rem; }

/* line 272, ../scss/pages/_page-specific.scss */
.ml-10 {
  margin-left: 10px; }

/* line 276, ../scss/pages/_page-specific.scss */
.normal-weight {
  font-weight: normal; }

/* ---------------------------------------------
   Login Page Styles
   --------------------------------------------- */
/* line 5, ../scss/pages/_login.scss */
body.login-page {
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem; }

/* Brand row: logo + app name */
/* line 15, ../scss/pages/_login.scss */
.login-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem; }
  /* line 22, ../scss/pages/_login.scss */
  .login-brand img {
    max-width: 48px;
    height: auto;
    display: block; }
  /* line 28, ../scss/pages/_login.scss */
  .login-brand .login-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--brand);
    white-space: nowrap; }

/* Login card container */
/* line 37, ../scss/pages/_login.scss */
.login-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 4px solid var(--brand);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  width: 100%;
  max-width: 420px; }

/* Headings */
/* line 50, ../scss/pages/_login.scss */
.login-heading {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--text); }

/* line 57, ../scss/pages/_login.scss */
.login-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem; }

/* Full-width button */
/* line 64, ../scss/pages/_login.scss */
.btn-full {
  width: 100%;
  display: block;
  text-align: center;
  margin-top: 0.5rem; }

/* Forgot password link */
/* line 72, ../scss/pages/_login.scss */
.forgot-wrap {
  text-align: right;
  margin-top: 0.5rem; }
  /* line 76, ../scss/pages/_login.scss */
  .forgot-wrap a {
    font-size: 0.9rem;
    color: var(--brand);
    text-decoration: none; }
    /* line 81, ../scss/pages/_login.scss */
    .forgot-wrap a:hover {
      text-decoration: underline; }

/* New member CTA */
/* line 88, ../scss/pages/_login.scss */
.new-member {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 1rem; }
  /* line 95, ../scss/pages/_login.scss */
  .new-member a {
    color: var(--brand);
    font-weight: 600;
    text-decoration: none; }
    /* line 100, ../scss/pages/_login.scss */
    .new-member a:hover {
      text-decoration: underline; }

/* ---------------------------------------------
   Forgot Password Page Styles
   --------------------------------------------- */
/* line 5, ../scss/pages/_forgot-password.scss */
body.forgot-page {
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem; }

/* Reuse login card styling */
/* line 15, ../scss/pages/_forgot-password.scss */
.forgot-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 4px solid var(--brand);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  width: 100%;
  max-width: 420px; }

/* Brand row */
/* line 28, ../scss/pages/_forgot-password.scss */
.login-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem; }
  /* line 35, ../scss/pages/_forgot-password.scss */
  .login-brand img {
    max-width: 48px;
    height: auto;
    display: block; }
  /* line 41, ../scss/pages/_forgot-password.scss */
  .login-brand .login-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--brand);
    white-space: nowrap; }

/* Headings */
/* line 50, ../scss/pages/_forgot-password.scss */
.forgot-heading {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--text); }

/* line 57, ../scss/pages/_forgot-password.scss */
.forgot-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem; }

/* line 63, ../scss/pages/_forgot-password.scss */
.forgot-note {
  font-size: 0.85rem;
  color: var(--text-muted); }
  /* line 67, ../scss/pages/_forgot-password.scss */
  .forgot-note a {
    color: var(--brand);
    font-weight: 600;
    text-decoration: none; }
    /* line 72, ../scss/pages/_forgot-password.scss */
    .forgot-note a:hover {
      text-decoration: underline; }

/* Success icon */
/* line 79, ../scss/pages/_forgot-password.scss */
.success-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #16a34a; }

/* Back to login */
/* line 86, ../scss/pages/_forgot-password.scss */
.login-footer {
  margin-top: 1.5rem; }
  /* line 89, ../scss/pages/_forgot-password.scss */
  .login-footer a {
    color: var(--brand);
    font-weight: 600;
    text-decoration: none; }
    /* line 94, ../scss/pages/_forgot-password.scss */
    .login-footer a:hover {
      text-decoration: underline; }

/* line 99, ../scss/pages/_forgot-password.scss */
.forgot-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem; }

/* ---------------------------------------------
   Reset Password Page Styles
   --------------------------------------------- */
/* line 5, ../scss/pages/_reset-password.scss */
body.reset-page {
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem; }

/* Card */
/* line 15, ../scss/pages/_reset-password.scss */
.reset-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 4px solid var(--brand);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  width: 100%;
  max-width: 420px; }

/* Headings */
/* line 28, ../scss/pages/_reset-password.scss */
.reset-heading {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--text); }

/* line 35, ../scss/pages/_reset-password.scss */
.reset-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem; }

/* Success + Error Icons */
/* line 42, ../scss/pages/_reset-password.scss */
.success-icon,
.error-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem; }

/* line 48, ../scss/pages/_reset-password.scss */
.success-icon {
  color: #16a34a; }

/* line 49, ../scss/pages/_reset-password.scss */
.error-icon {
  color: #dc2626; }

/* Password field wrapper */
/* line 52, ../scss/pages/_reset-password.scss */
.password-wrap {
  position: relative;
  display: flex;
  align-items: center; }
  /* line 57, ../scss/pages/_reset-password.scss */
  .password-wrap input {
    flex: 1;
    padding-right: 2.5rem; }

/* Toggle button */
/* line 64, ../scss/pages/_reset-password.scss */
.pwd-toggle {
  position: absolute;
  right: 0.6rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #9ca3af;
  font-size: 0.95rem;
  padding: 0.25rem;
  transition: color 0.15s; }
  /* line 75, ../scss/pages/_reset-password.scss */
  .pwd-toggle:hover {
    color: #6b7280; }

/* Strength bar */
/* line 81, ../scss/pages/_reset-password.scss */
.pwd-strength-bar {
  height: 4px;
  background: #e5e7eb;
  border-radius: 2px;
  margin-top: 0.4rem;
  overflow: hidden; }
  /* line 88, ../scss/pages/_reset-password.scss */
  .pwd-strength-bar #strength-fill {
    height: 100%;
    width: 0;
    border-radius: 2px;
    transition: width 0.3s, background 0.3s; }

/* line 96, ../scss/pages/_reset-password.scss */
.pwd-strength-label {
  font-size: 0.72rem;
  margin-top: 0.2rem;
  font-weight: 500;
  min-height: 1rem; }

/* line 6, ../scss/pages/_event-details.scss */
.task-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem; }
  @media (max-width: 1200px) {
    /* line 6, ../scss/pages/_event-details.scss */
    .task-strip {
      grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 640px) {
    /* line 6, ../scss/pages/_event-details.scss */
    .task-strip {
      grid-template-columns: repeat(2, 1fr); } }

/* line 20, ../scss/pages/_event-details.scss */
.task-card {
  border-radius: 10px;
  padding: 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  border: 1.5px solid transparent;
  transition: box-shadow 0.15s ease; }
  /* line 29, ../scss/pages/_event-details.scss */
  .task-card:hover {
    box-shadow: 0 2px 12px rgba(30, 28, 26, 0.1); }
  /* line 34, ../scss/pages/_event-details.scss */
  .task-card.task-done {
    background: #f0faf5;
    border-color: #a7d7bc; }
    /* line 38, ../scss/pages/_event-details.scss */
    .task-card.task-done .task-card__icon {
      color: #2e9e68; }
    /* line 39, ../scss/pages/_event-details.scss */
    .task-card.task-done .task-card__status {
      color: #2e9e68;
      font-weight: 600; }
  /* line 43, ../scss/pages/_event-details.scss */
  .task-card.task-todo {
    background: #fffbf0;
    border-color: #f5c842; }
    /* line 47, ../scss/pages/_event-details.scss */
    .task-card.task-todo .task-card__icon {
      color: #c49a06; }
    /* line 48, ../scss/pages/_event-details.scss */
    .task-card.task-todo .task-card__status {
      color: #9a7700; }
  /* line 52, ../scss/pages/_event-details.scss */
  .task-card.task-optional {
    background: #f9f9f9;
    border-color: #e0e0e0; }
    /* line 56, ../scss/pages/_event-details.scss */
    .task-card.task-optional .task-card__icon {
      color: #aaa; }
    /* line 57, ../scss/pages/_event-details.scss */
    .task-card.task-optional .task-card__status {
      color: #999; }
  /* line 60, ../scss/pages/_event-details.scss */
  .task-card__icon {
    font-size: 1.125rem; }
  /* line 64, ../scss/pages/_event-details.scss */
  .task-card__label {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b6560; }
  /* line 72, ../scss/pages/_event-details.scss */
  .task-card__status {
    font-size: 0.8125rem; }
  /* line 76, ../scss/pages/_event-details.scss */
  .task-card__link {
    font-size: 0.75rem;
    color: #3aafa9;
    text-decoration: none;
    margin-top: auto;
    font-weight: 600; }
    /* line 83, ../scss/pages/_event-details.scss */
    .task-card__link:hover {
      text-decoration: underline; }

/* line 88, ../scss/pages/_event-details.scss */
.collapsible-row {
  border-top: 1px solid #f0f0f0; }
  /* line 91, ../scss/pages/_event-details.scss */
  .collapsible-row:last-child {
    border-bottom: 1px solid #f0f0f0; }

/* line 94, ../scss/pages/_event-details.scss */
.collapsible-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  color: #3a3a3a;
  text-align: left;
  transition: color 0.15s ease; }
  /* line 109, ../scss/pages/_event-details.scss */
  .collapsible-trigger:hover {
    color: #3aafa9; }

/* line 112, ../scss/pages/_event-details.scss */
.collapsible-body {
  padding-bottom: 0.875rem; }

/* line 117, ../scss/pages/_event-details.scss */
.event-meta-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.875rem; }

/* line 125, ../scss/pages/_event-details.scss */
.em-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9c9490;
  margin-left: 0.5rem; }
  /* line 133, ../scss/pages/_event-details.scss */
  .em-label:first-child {
    margin-left: 0; }

/* line 137, ../scss/pages/_event-details.scss */
.section-link {
  font-size: 0.8125rem;
  color: #3aafa9;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap; }
  /* line 144, ../scss/pages/_event-details.scss */
  .section-link:hover {
    text-decoration: underline; }

/* line 148, ../scss/pages/_event-details.scss */
.stat-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem; }

/* line 154, ../scss/pages/_event-details.scss */
.stat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  padding: 0.25rem 0;
  border-bottom: 1px solid #f5f5f5; }
  /* line 162, ../scss/pages/_event-details.scss */
  .stat-item:last-child {
    border-bottom: none; }
  /* line 164, ../scss/pages/_event-details.scss */
  .stat-item .label {
    color: #888;
    flex-shrink: 0; }
  /* line 165, ../scss/pages/_event-details.scss */
  .stat-item .value {
    font-weight: 500;
    color: #2a2a2a;
    text-align: right; }

/* line 169, ../scss/pages/_event-details.scss */
.btn-text {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #3aafa9;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem; }
  /* line 181, ../scss/pages/_event-details.scss */
  .btn-text:hover {
    color: #30908b;
    text-decoration: underline; }

/* line 188, ../scss/pages/_event-details.scss */
.roster-item {
  transition: background 0.15s ease; }

/* line 193, ../scss/pages/_event-details.scss */
.page-header--wrap {
  flex-wrap: wrap;
  gap: 1rem; }

/* line 199, ../scss/pages/_event-details.scss */
.stat-fraction {
  font-size: 1rem;
  color: var(--text-muted); }

/* line 205, ../scss/pages/_event-details.scss */
.event-desc-text {
  line-height: 1.7;
  font-size: 0.9375rem; }

/* line 211, ../scss/pages/_event-details.scss */
.preformatted-text {
  white-space: pre-wrap;
  line-height: 1.65; }

/* line 217, ../scss/pages/_event-details.scss */
.roster-primary {
  background: #e8f3ed;
  border: 1px solid #c5ddd5; }

/* line 222, ../scss/pages/_event-details.scss */
.badge-primary-role {
  background: #3aafa9;
  color: #ffffff;
  font-size: 0.65rem;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.04em; }

/* line 233, ../scss/pages/_event-details.scss */
.roster-photo {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0; }

/* line 241, ../scss/pages/_event-details.scss */
.roster-icon {
  font-size: 1.375rem;
  flex-shrink: 0; }

/* line 246, ../scss/pages/_event-details.scss */
.role-badge {
  font-size: 0.68rem; }

/* line 251, ../scss/pages/_event-details.scss */
.panel-heading {
  font-size: 0.9375rem;
  margin-bottom: 0.875rem; }

/* line 257, ../scss/pages/_event-details.scss */
.section-count {
  font-size: 0.7rem; }

/* line 262, ../scss/pages/_event-details.scss */
.table-header-row {
  border-bottom: 2px solid #eeeeee;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted); }

/* line 270, ../scss/pages/_event-details.scss */
.table-body-row {
  border-bottom: 1px solid #f5f5f5; }

/* line 275, ../scss/pages/_event-details.scss */
.gallery-admin-strip {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.625rem;
  align-items: flex-start; }

/* line 283, ../scss/pages/_event-details.scss */
.gallery-admin-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0; }

/* line 290, ../scss/pages/_event-details.scss */
.gallery-admin-thumb {
  width: 88px;
  height: 66px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #eeeeee;
  display: block;
  flex-shrink: 0; }

/* line 300, ../scss/pages/_event-details.scss */
.gallery-admin-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  width: 88px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-top: 2px;
  text-align: center; }

/* line 312, ../scss/pages/_event-details.scss */
.anchor-image-preview {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  max-height: 180px;
  border: 1px solid #eeeeee;
  display: block; }

/* line 322, ../scss/pages/_event-details.scss */
.attendee-email {
  font-size: 0.7rem; }

/* line 327, ../scss/pages/_event-details.scss */
.faq-admin-item {
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 0.75rem;
  background: #ffffff;
  transition: box-shadow 0.15s ease; }
  /* line 335, ../scss/pages/_event-details.scss */
  .faq-admin-item:hover {
    box-shadow: 0 2px 8px rgba(30, 28, 26, 0.08); }
  /* line 337, ../scss/pages/_event-details.scss */
  .faq-admin-item--inactive {
    background: #fafafa;
    opacity: 0.7; }

/* line 343, ../scss/pages/_event-details.scss */
.faq-admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.625rem; }

/* line 350, ../scss/pages/_event-details.scss */
.faq-admin-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem; }

/* line 356, ../scss/pages/_event-details.scss */
.faq-admin-sort {
  font-size: 0.75rem;
  color: #9c9490;
  background: #f5f5f5;
  padding: 0.15rem 0.5rem;
  border-radius: 4px; }

/* line 364, ../scss/pages/_event-details.scss */
.faq-admin-actions {
  display: flex;
  align-items: center;
  gap: 0.375rem; }

/* line 370, ../scss/pages/_event-details.scss */
.faq-admin-question {
  font-weight: 600;
  font-size: 0.9375rem;
  color: #1e1c1a;
  margin-bottom: 0.375rem;
  line-height: 1.4; }

/* line 378, ../scss/pages/_event-details.scss */
.faq-admin-answer {
  font-size: 0.875rem;
  color: #6b6560;
  line-height: 1.65;
  margin: 0;
  white-space: pre-wrap; }

/* line 386, ../scss/pages/_event-details.scss */
.faq-admin-edit {
  padding-top: 0.5rem;
  border-top: 1px solid #f0f0f0; }

/* line 392, ../scss/pages/_event-details.scss */
.btn-xs {
  padding: 0.2rem 0.5rem;
  font-size: 0.75rem;
  border-radius: 4px; }

/* line 398, ../scss/pages/_event-details.scss */
.btn-danger-outline {
  border: 1px solid #dc3545;
  color: #dc3545;
  background: transparent;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.15s ease; }
  /* line 406, ../scss/pages/_event-details.scss */
  .btn-danger-outline:hover {
    background: #dc3545;
    color: #ffffff; }

/* line 413, ../scss/pages/_event-details.scss */
.sessions-full-section {
  margin-top: 1.5rem; }

/* line 419, ../scss/pages/_event-details.scss */
.sessions-table {
  width: 100%;
  border-collapse: collapse;
  display: table !important; }
  /* line 424, ../scss/pages/_event-details.scss */
  .sessions-table thead {
    display: table-header-group !important; }
  /* line 428, ../scss/pages/_event-details.scss */
  .sessions-table tbody {
    display: table-row-group !important; }
  /* line 432, ../scss/pages/_event-details.scss */
  .sessions-table tr {
    display: table-row !important;
    border-bottom: 1px solid #f5f5f5; }
    /* line 436, ../scss/pages/_event-details.scss */
    .sessions-table tr:last-child {
      border-bottom: none; }
    /* line 437, ../scss/pages/_event-details.scss */
    .sessions-table tr:hover {
      background: #fafafa; }
  /* line 440, ../scss/pages/_event-details.scss */
  .sessions-table th,
  .sessions-table td {
    display: table-cell !important;
    padding: 0.5rem 0.75rem;
    vertical-align: middle;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; }
  /* line 451, ../scss/pages/_event-details.scss */
  .sessions-table td:nth-child(4),
  .sessions-table td:nth-child(5),
  .sessions-table td:nth-child(6) {
    white-space: normal; }
  /* line 457, ../scss/pages/_event-details.scss */
  .sessions-table thead th {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #9c9490;
    border-bottom: 2px solid #eeeeee;
    text-align: left;
    white-space: nowrap; }

/* line 468, ../scss/pages/_event-details.scss */
.session-time-display {
  font-size: 0.875rem;
  color: #4a4a4a; }

/* line 473, ../scss/pages/_event-details.scss */
.btn-edit-time {
  font-size: 0.7rem;
  color: #9c9490;
  opacity: 0;
  transition: opacity 0.15s ease; }
  /* line 479, ../scss/pages/_event-details.scss */
  .sessions-table tr:hover .btn-edit-time {
    opacity: 1; }
  /* line 480, ../scss/pages/_event-details.scss */
  .btn-edit-time:hover {
    color: #3aafa9; }

/* line 484, ../scss/pages/_event-details.scss */
.time-edit-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  align-items: center;
  justify-content: center; }
  /* line 493, ../scss/pages/_event-details.scss */
  .time-edit-modal.open {
    display: flex; }
  /* line 495, ../scss/pages/_event-details.scss */
  .time-edit-modal__inner {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    width: 380px;
    max-width: 90vw;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2); }
  /* line 504, ../scss/pages/_event-details.scss */
  .time-edit-modal__title {
    font-size: 1rem;
    margin: 0; }
  /* line 509, ../scss/pages/_event-details.scss */
  .time-edit-modal__close {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.25rem;
    color: #888888;
    line-height: 1;
    padding: 0; }
    /* line 518, ../scss/pages/_event-details.scss */
    .time-edit-modal__close:hover {
      color: #333333; }

/* line 523, ../scss/pages/_event-details.scss */
.public-url-block {
  padding-top: 1rem;
  border-top: 1px solid #f0f0f0; }

/* line 528, ../scss/pages/_event-details.scss */
.public-url-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9c9490;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.375rem; }

/* line 540, ../scss/pages/_event-details.scss */
.public-url-row {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 0.5rem; }

/* line 547, ../scss/pages/_event-details.scss */
.public-url-input {
  flex: 1;
  font-size: 0.75rem;
  color: #4a4a4a;
  background: #f7f4ef;
  border: 1px solid #ece8e1;
  border-radius: 6px;
  padding: 0.35rem 0.625rem;
  cursor: text;
  min-width: 0;
  font-family: 'Courier New', monospace; }
  /* line 559, ../scss/pages/_event-details.scss */
  .public-url-input:focus {
    outline: none;
    background: #ffffff; }

/* line 562, ../scss/pages/_event-details.scss */
.public-url-copy {
  flex-shrink: 0;
  transition: all 0.15s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap; }

/* line 571, ../scss/pages/_event-details.scss */
.btn-success-outline {
  border-color: #2e9e68 !important;
  color: #2e9e68 !important; }

/* line 576, ../scss/pages/_event-details.scss */
.public-url-open {
  font-size: 0.75rem;
  color: #9c9490;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem; }
  /* line 584, ../scss/pages/_event-details.scss */
  .public-url-open:hover {
    color: #3aafa9; }

/* line 588, ../scss/pages/_event-details.scss */
.reg-filter-bar {
  background: #ffffff;
  border: 1px solid #ece8e1;
  border-radius: 10px;
  padding: 0.75rem 1rem; }

/* line 595, ../scss/pages/_event-details.scss */
.filter-pill-sm {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  border: 1.5px solid #ece8e1;
  font-size: 0.75rem;
  font-weight: 500;
  color: #6b6560;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.15s ease;
  background: #ffffff; }
  /* line 610, ../scss/pages/_event-details.scss */
  .filter-pill-sm:hover {
    border-color: #3aafa9;
    color: #3aafa9; }
  /* line 611, ../scss/pages/_event-details.scss */
  .filter-pill-sm.active {
    background: #3aafa9;
    border-color: #3aafa9;
    color: #ffffff; }

/* line 615, ../scss/pages/_event-details.scss */
.reg-table {
  border-collapse: collapse;
  display: table !important; }
  /* line 619, ../scss/pages/_event-details.scss */
  .reg-table thead {
    display: table-header-group !important; }
  /* line 620, ../scss/pages/_event-details.scss */
  .reg-table tbody {
    display: table-row-group !important; }
  /* line 622, ../scss/pages/_event-details.scss */
  .reg-table__header {
    display: table-row !important; }
    /* line 625, ../scss/pages/_event-details.scss */
    .reg-table__header th {
      display: table-cell !important;
      padding: 0.5rem 0.75rem;
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: #9c9490;
      border-bottom: 2px solid #eeeeee;
      text-align: left;
      white-space: nowrap; }
  /* line 638, ../scss/pages/_event-details.scss */
  .reg-table__row {
    display: table-row !important;
    border-bottom: 1px solid #f5f5f5; }
    /* line 642, ../scss/pages/_event-details.scss */
    .reg-table__row:last-child {
      border-bottom: none; }
    /* line 643, ../scss/pages/_event-details.scss */
    .reg-table__row:hover {
      background: #fdfcfa; }
    /* line 645, ../scss/pages/_event-details.scss */
    .reg-table__row--cancelled {
      opacity: 0.6; }
      /* line 647, ../scss/pages/_event-details.scss */
      .reg-table__row--cancelled td {
        text-decoration: line-through; }
      /* line 648, ../scss/pages/_event-details.scss */
      .reg-table__row--cancelled .reg-status {
        text-decoration: none; }
      /* line 649, ../scss/pages/_event-details.scss */
      .reg-table__row--cancelled .reg-attendee-email a {
        text-decoration: none; }
    /* line 652, ../scss/pages/_event-details.scss */
    .reg-table__row td {
      display: table-cell !important;
      padding: 0.625rem 0.75rem;
      vertical-align: top;
      font-size: 0.875rem; }
  /* line 660, ../scss/pages/_event-details.scss */
  .reg-table__attendee {
    min-width: 180px; }

/* line 665, ../scss/pages/_event-details.scss */
.reg-attendee-name {
  font-weight: 600;
  color: #1e1c1a; }

/* line 666, ../scss/pages/_event-details.scss */
.reg-attendee-email {
  font-size: 0.75rem;
  color: #6b6560; }

/* line 667, ../scss/pages/_event-details.scss */
.reg-attendee-phone {
  font-size: 0.75rem;
  color: #9c9490; }

/* line 669, ../scss/pages/_event-details.scss */
.reg-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.15rem 0.5rem;
  border-radius: 99px;
  font-size: 0.6875rem;
  font-weight: 700;
  white-space: nowrap; }
  /* line 679, ../scss/pages/_event-details.scss */
  .reg-type-badge--member {
    background: #e8f3ed;
    color: #2e7d5e; }
  /* line 680, ../scss/pages/_event-details.scss */
  .reg-type-badge--guest {
    background: #f0f0f0;
    color: #666666; }

/* line 683, ../scss/pages/_event-details.scss */
.reg-status {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 99px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em; }
  /* line 692, ../scss/pages/_event-details.scss */
  .reg-status--confirmed {
    background: #e8f5ee;
    color: #2e9e68; }
  /* line 693, ../scss/pages/_event-details.scss */
  .reg-status--cancelled {
    background: #fdecea;
    color: #c62828; }
  /* line 694, ../scss/pages/_event-details.scss */
  .reg-status--pending {
    background: #fff8e1;
    color: #c49a06; }
  /* line 695, ../scss/pages/_event-details.scss */
  .reg-status--waiting {
    background: #e8f0fe;
    color: #1a73e8; }
  /* line 696, ../scss/pages/_event-details.scss */
  .reg-status--claimed {
    background: #fff3e0;
    color: #e65100; }
  /* line 697, ../scss/pages/_event-details.scss */
  .reg-status--expired {
    background: #f0f0f0;
    color: #888888; }

/* line 700, ../scss/pages/_event-details.scss */
.reg-waiver-check {
  margin-top: 0.25rem;
  font-size: 0.75rem; }

/* line 702, ../scss/pages/_event-details.scss */
.reg-ref {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #1e1c1a;
  white-space: nowrap; }

/* line 709, ../scss/pages/_event-details.scss */
.reg-paypal-ref {
  font-size: 0.65rem;
  color: #9c9490;
  font-family: 'Courier New', monospace;
  cursor: default; }

/* line 717, ../scss/pages/_event-details.scss */
.cap-locked-display {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: #f7f4ef;
  border: 1px solid #ece8e1;
  border-radius: 6px;
  font-size: 0.9375rem; }

/* line 728, ../scss/pages/_event-details.scss */
.field-readonly {
  background: #f7f4ef;
  color: #9c9490;
  cursor: not-allowed;
  border-color: #ece8e1; }

/* line 736, ../scss/pages/_event-details.scss */
.zoom-cap-presets {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem; }
  /* line 742, ../scss/pages/_event-details.scss */
  .zoom-cap-presets .btn {
    font-size: 0.8125rem;
    padding: 0.3rem 0.75rem; }

/* line 749, ../scss/pages/_event-details.scss */
.day-pass-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem; }

/* line 755, ../scss/pages/_event-details.scss */
.day-pass-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.85rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  flex-wrap: wrap; }
  /* line 765, ../scss/pages/_event-details.scss */
  .day-pass-row.day-pass-inactive {
    opacity: 0.55; }

/* line 770, ../scss/pages/_event-details.scss */
.day-pass-date {
  font-size: 0.8125rem;
  min-width: 90px; }

/* line 771, ../scss/pages/_event-details.scss */
.day-pass-label {
  flex: 1;
  font-size: 0.875rem; }

/* line 772, ../scss/pages/_event-details.scss */
.day-pass-price {
  font-weight: 600;
  font-size: 0.875rem;
  min-width: 55px;
  text-align: right; }

/* line 773, ../scss/pages/_event-details.scss */
.day-pass-capacity {
  min-width: 80px;
  text-align: right; }

/* line 774, ../scss/pages/_event-details.scss */
.day-pass-status {
  min-width: 60px; }

/* line 775, ../scss/pages/_event-details.scss */
.day-pass-actions {
  display: flex;
  gap: 0.4rem;
  margin-left: auto; }

/* line 781, ../scss/pages/_event-details.scss */
.btn-danger-outline {
  background: transparent;
  color: var(--error);
  border: 1px solid var(--error); }
  /* line 785, ../scss/pages/_event-details.scss */
  .btn-danger-outline:hover {
    background: var(--error);
    color: white; }

/* line 7, ../scss/pages/_my-tickets.scss */
.tw-page-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem; }
  /* line 12, ../scss/pages/_my-tickets.scss */
  .tw-page-header h1 {
    margin: 0; }

/* line 16, ../scss/pages/_my-tickets.scss */
.tw-section-heading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text);
  margin: 0 0 0.75rem; }
  /* line 26, ../scss/pages/_my-tickets.scss */
  .tw-section-heading--muted {
    color: var(--text-muted); }

/* line 30, ../scss/pages/_my-tickets.scss */
.tw-ticket-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem; }
  /* line 34, ../scss/pages/_my-tickets.scss */
  .tw-ticket-list--past {
    gap: 0.5rem; }

/* line 38, ../scss/pages/_my-tickets.scss */
.tw-card {
  display: flex;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.15s; }
  /* line 46, ../scss/pages/_my-tickets.scss */
  .tw-card:hover {
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1); }
  /* line 47, ../scss/pages/_my-tickets.scss */
  .tw-card--past {
    opacity: 0.72;
    box-shadow: none; }
    /* line 50, ../scss/pages/_my-tickets.scss */
    .tw-card--past:hover {
      opacity: 1; }

/* line 55, ../scss/pages/_my-tickets.scss */
.tw-card__strip {
  width: 72px;
  min-width: 72px;
  background: linear-gradient(160deg, #3aafa9 0%, #2d9389 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden; }
  /* line 64, ../scss/pages/_my-tickets.scss */
  .tw-card__strip::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 0;
    bottom: 0;
    width: 10px;
    background: radial-gradient(circle at center, #f5f2ee 4px, transparent 4px);
    background-size: 10px 18px; }
  /* line 72, ../scss/pages/_my-tickets.scss */
  .tw-card__strip--past {
    background: #c8c4be; }

/* line 75, ../scss/pages/_my-tickets.scss */
.tw-card__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block; }

/* line 82, ../scss/pages/_my-tickets.scss */
.tw-card__icon {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.5rem; }

/* line 88, ../scss/pages/_my-tickets.scss */
.tw-card__body {
  flex: 1;
  padding: 0.85rem 1rem;
  min-width: 0; }

/* line 95, ../scss/pages/_my-tickets.scss */
.tw-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.5rem; }

/* line 103, ../scss/pages/_my-tickets.scss */
.tw-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0.2rem 0 0;
  line-height: 1.3; }
  /* line 108, ../scss/pages/_my-tickets.scss */
  .tw-card__title a {
    color: var(--text);
    text-decoration: none; }
    /* line 108, ../scss/pages/_my-tickets.scss */
    .tw-card__title a:hover {
      color: var(--teal); }
  /* line 109, ../scss/pages/_my-tickets.scss */
  .tw-card__title--past {
    font-size: 0.9375rem;
    font-weight: 600; }

/* line 112, ../scss/pages/_my-tickets.scss */
.tw-view-ticket {
  white-space: nowrap;
  flex-shrink: 0; }

/* line 115, ../scss/pages/_my-tickets.scss */
.tw-type-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  margin-bottom: 0.15rem;
  background: #e8f5f4;
  color: #2d9389;
  border: 1px solid #b2dedd; }
  /* line 127, ../scss/pages/_my-tickets.scss */
  .tw-type-badge--day_pass {
    background: #eff7ff;
    color: #1a6fb5;
    border-color: #b3d4f0; }
  /* line 128, ../scss/pages/_my-tickets.scss */
  .tw-type-badge--alacarte {
    background: #f5f0ff;
    color: #6b3fb5;
    border-color: #d0b8f0; }
  /* line 129, ../scss/pages/_my-tickets.scss */
  .tw-type-badge--past {
    background: var(--bg);
    color: var(--text-muted);
    border-color: var(--border); }

/* line 133, ../scss/pages/_my-tickets.scss */
.tw-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
  margin-bottom: 0.6rem; }

/* line 140, ../scss/pages/_my-tickets.scss */
.tw-meta-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.875rem; }
  /* line 145, ../scss/pages/_my-tickets.scss */
  .tw-meta-item i {
    font-size: 0.8rem; }

/* line 149, ../scss/pages/_my-tickets.scss */
.tw-sessions {
  border-top: 1px solid var(--border);
  padding-top: 0.5rem;
  margin-bottom: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem; }

/* line 158, ../scss/pages/_my-tickets.scss */
.tw-session-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem; }
  /* line 163, ../scss/pages/_my-tickets.scss */
  .tw-session-row--past {
    opacity: 0.5; }

/* line 166, ../scss/pages/_my-tickets.scss */
.tw-session-date {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  min-width: 80px;
  white-space: nowrap; }

/* line 174, ../scss/pages/_my-tickets.scss */
.tw-session-title {
  flex: 1; }

/* line 176, ../scss/pages/_my-tickets.scss */
.tw-zoom-btn {
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem; }

/* line 184, ../scss/pages/_my-tickets.scss */
.tw-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 0.5rem;
  margin-top: 0.4rem;
  flex-wrap: wrap; }

/* line 196, ../scss/pages/_my-tickets.scss */
.empty-state {
  text-align: center;
  padding: 3.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg); }

@media (max-width: 600px) {
  /* line 206, ../scss/pages/_my-tickets.scss */
  .tw-card__strip {
    width: 52px;
    min-width: 52px; }

  /* line 207, ../scss/pages/_my-tickets.scss */
  .tw-card__body {
    padding: 0.7rem 0.75rem; }

  /* line 208, ../scss/pages/_my-tickets.scss */
  .tw-card__top {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.5rem; }

  /* line 209, ../scss/pages/_my-tickets.scss */
  .tw-card__title {
    font-size: 0.9375rem; }

  /* line 212, ../scss/pages/_my-tickets.scss */
  .tw-view-ticket {
    display: none; }

  /* line 213, ../scss/pages/_my-tickets.scss */
  .tw-view-ticket--footer {
    display: inline-flex !important; }

  /* line 214, ../scss/pages/_my-tickets.scss */
  .tw-session-row {
    flex-wrap: wrap; }

  /* line 215, ../scss/pages/_my-tickets.scss */
  .tw-session-date {
    min-width: 0; } }
/* line 219, ../scss/pages/_my-tickets.scss */
.tw-view-ticket--footer {
  display: none; }

/* line 6, ../scss/pages/_my-ticket.scss */
.mt-card {
  max-width: 480px;
  margin: 0 auto 1.5rem;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1); }

/* line 17, ../scss/pages/_my-ticket.scss */
.mt-card__header {
  background: linear-gradient(135deg, #3aafa9 0%, #2d9389 100%);
  padding: 1rem 1.25rem 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem; }
  /* line 25, ../scss/pages/_my-ticket.scss */
  .mt-card__header--day_pass {
    background: linear-gradient(135deg, #1a6fb5 0%, #1558a0 100%); }
  /* line 28, ../scss/pages/_my-ticket.scss */
  .mt-card__header--alacarte {
    background: linear-gradient(135deg, #6b3fb5 0%, #5530a0 100%); }

/* line 33, ../scss/pages/_my-ticket.scss */
.mt-card__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem; }

/* line 39, ../scss/pages/_my-ticket.scss */
.mt-card__logo {
  height: 28px;
  width: auto; }

/* line 44, ../scss/pages/_my-ticket.scss */
.mt-card__studio {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 600; }

/* line 50, ../scss/pages/_my-ticket.scss */
.mt-type-pill {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  white-space: nowrap; }

/* line 64, ../scss/pages/_my-ticket.scss */
.mt-card__event-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block; }

/* line 72, ../scss/pages/_my-ticket.scss */
.mt-card__body {
  padding: 1.25rem; }

/* line 76, ../scss/pages/_my-ticket.scss */
.mt-card__title {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 0 0.75rem;
  line-height: 1.25; }

/* line 83, ../scss/pages/_my-ticket.scss */
.mt-card__details {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem; }

/* line 90, ../scss/pages/_my-ticket.scss */
.mt-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem; }
  /* line 96, ../scss/pages/_my-ticket.scss */
  .mt-detail-row i {
    margin-top: 0.15rem;
    flex-shrink: 0; }

/* line 100, ../scss/pages/_my-ticket.scss */
.mt-sessions {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden; }

/* line 106, ../scss/pages/_my-ticket.scss */
.mt-sessions__label {
  background: var(--bg);
  padding: 0.4rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border); }

/* line 117, ../scss/pages/_my-ticket.scss */
.mt-session {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid var(--border); }
  /* line 124, ../scss/pages/_my-ticket.scss */
  .mt-session:last-child {
    border-bottom: none; }
  /* line 126, ../scss/pages/_my-ticket.scss */
  .mt-session--past {
    opacity: 0.5;
    background: var(--bg); }

/* line 132, ../scss/pages/_my-ticket.scss */
.mt-session__when {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  min-width: 100px;
  line-height: 1.4; }

/* line 140, ../scss/pages/_my-ticket.scss */
.mt-session__info {
  flex: 1;
  min-width: 0; }

/* line 142, ../scss/pages/_my-ticket.scss */
.mt-session__title {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.3; }

/* line 148, ../scss/pages/_my-ticket.scss */
.mt-session__loc {
  margin-top: 0.1rem; }
  /* line 150, ../scss/pages/_my-ticket.scss */
  .mt-session__loc i {
    font-size: 0.7rem; }

/* line 153, ../scss/pages/_my-ticket.scss */
.mt-zoom-btn {
  flex-shrink: 0; }

/* line 156, ../scss/pages/_my-ticket.scss */
.mt-card__perforation {
  display: flex;
  align-items: center;
  position: relative;
  margin: 0; }

/* line 163, ../scss/pages/_my-ticket.scss */
.mt-card__perf-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--page-bg, #f5f2ee);
  border: 1px solid var(--border);
  flex-shrink: 0;
  position: relative;
  z-index: 1; }
  /* line 173, ../scss/pages/_my-ticket.scss */
  .mt-card__perf-circle--left {
    margin-left: -10px; }
  /* line 174, ../scss/pages/_my-ticket.scss */
  .mt-card__perf-circle--right {
    margin-right: -10px; }

/* line 177, ../scss/pages/_my-ticket.scss */
.mt-card__perf-line {
  flex: 1;
  border-top: 2px dashed var(--border); }

/* line 183, ../scss/pages/_my-ticket.scss */
.mt-card__stub {
  display: flex;
  gap: 1.25rem;
  padding: 1rem 1.25rem 1.25rem;
  align-items: flex-start; }

/* line 190, ../scss/pages/_my-ticket.scss */
.mt-stub__qr {
  flex-shrink: 0;
  text-align: center; }
  /* line 195, ../scss/pages/_my-ticket.scss */
  .mt-stub__qr canvas, .mt-stub__qr img {
    display: block;
    width: 144px !important;
    height: 144px !important; }

/* line 202, ../scss/pages/_my-ticket.scss */
.mt-stub__qr-hint {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0.35rem 0 0; }

/* line 210, ../scss/pages/_my-ticket.scss */
.mt-stub__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0; }

/* line 218, ../scss/pages/_my-ticket.scss */
.mt-stub__row {
  display: flex;
  flex-direction: column;
  gap: 0.1rem; }

/* line 224, ../scss/pages/_my-ticket.scss */
.mt-stub__label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted); }

/* line 232, ../scss/pages/_my-ticket.scss */
.mt-stub__value {
  font-size: 0.875rem;
  font-weight: 600;
  word-break: break-all; }
  /* line 237, ../scss/pages/_my-ticket.scss */
  .mt-stub__value.ref-text {
    font-size: 0.75rem;
    font-family: monospace;
    word-break: break-all; }

/* line 245, ../scss/pages/_my-ticket.scss */
.mt-actions {
  max-width: 480px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap; }

@media (max-width: 520px) {
  /* line 256, ../scss/pages/_my-ticket.scss */
  .mt-card__stub {
    flex-direction: column;
    align-items: center;
    text-align: center; }

  /* line 262, ../scss/pages/_my-ticket.scss */
  .mt-stub__info {
    width: 100%; }

  /* line 264, ../scss/pages/_my-ticket.scss */
  .mt-stub__row {
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline; } }
/*Add or delete a line below this line and then save to compile app.css*/

/*# sourceMappingURL=app.css.map */
