/* src/styles.css */
:root {
  color-scheme: light;
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --surface-strong: #101828;
  --text: #111827;
  --muted: #667085;
  --muted-2: #98a2b3;
  --line: #e4e7ec;
  --line-strong: #d0d5dd;
  --brand: #047857;
  --brand-dark: #065f46;
  --brand-soft: #ecfdf3;
  --blue: #2563eb;
  --blue-soft: #eff6ff;
  --amber: #d97706;
  --amber-soft: #fffbeb;
  --red: #dc2626;
  --red-soft: #fef2f2;
  --radius: 10px;
  --shadow: 0 18px 45px rgba(16, 24, 40, 0.08);
  --shadow-soft: 0 8px 22px rgba(16, 24, 40, 0.06);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  min-width: 1100px;
  background: var(--bg);
  color: var(--text);
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
}
.saas-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  background: var(--bg);
}
.saas-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  background: var(--surface);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  padding: 18px 16px;
  z-index: 20;
}
.saas-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 8px 10px 20px;
  border-bottom: 1px solid var(--line);
}
.saas-brand img {
  width: 78px;
  height: auto;
  display: block;
}
.saas-brand strong {
  display: block;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.08em;
}
.saas-brand span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.saas-nav {
  display: grid;
  gap: 4px;
  margin-top: 20px;
}
.saas-nav a {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 12px;
  border-radius: 8px;
  color: #475467;
  text-decoration: none;
  font-size: 14px;
  font-weight: 750;
  transition: background 0.16s ease, color 0.16s ease;
}
.saas-nav a span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #f2f4f7;
  color: #667085;
  font-size: 11px;
  font-weight: 900;
}
.saas-nav a svg {
  width: 17px;
  height: 17px;
  display: block;
  fill: currentColor;
}
.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.saas-nav a:hover,
.saas-nav a.active {
  background: var(--brand-soft);
  color: var(--brand-dark);
}
.saas-nav a:hover span,
.saas-nav a.active span {
  background: #d1fadf;
  color: var(--brand-dark);
}
.saas-sidebar-footer {
  margin-top: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: var(--surface-soft);
}
.saas-sidebar-footer span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.saas-sidebar-footer strong {
  display: block;
  margin-top: 6px;
  font-size: 17px;
}
.saas-sidebar-footer button {
  width: 100%;
  min-height: 42px;
  margin-top: 14px;
  border: 0;
  border-radius: 8px;
  background: var(--brand);
  color: #ffffff;
  font-weight: 900;
  cursor: pointer;
}
.saas-main {
  min-width: 0;
}
.saas-topbar {
  height: 76px;
  position: sticky;
  top: 0;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 30px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.saas-search {
  width: min(520px, 48vw);
  height: 44px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.saas-search input {
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0;
  color: var(--text);
  font-weight: 650;
}
.saas-user-actions,
.saas-user {
  display: flex;
  align-items: center;
  gap: 12px;
}
.saas-user-actions > button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: #475467;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}
.saas-divider {
  width: 1px;
  height: 34px;
  background: var(--line);
}
.saas-user strong,
.saas-user span {
  display: block;
  text-align: right;
}
.saas-user strong {
  font-size: 14px;
}
.saas-user span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.saas-avatar {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: var(--surface-strong);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}
.saas-content {
  padding: 30px;
}
.dashboard-page,
.ops-page,
.summer-page {
  display: grid;
  gap: 24px;
}
.dashboard-header,
.page-header,
.ops-hero,
.summer-hero {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}
.dashboard-header {
  min-height: 154px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  padding: 0 10px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.dashboard-header h2,
.ops-hero h2,
.summer-hero h2,
.page-header h2 {
  margin: 14px 0 0;
  color: var(--text);
  font-size: 34px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}
.dashboard-header p,
.ops-hero p,
.summer-hero p,
.page-header p {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 600;
}
.dashboard-date {
  min-width: 170px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: var(--surface-soft);
}
.dashboard-date span,
.dashboard-date strong {
  display: block;
}
.dashboard-date span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.dashboard-date strong {
  margin-top: 6px;
  font-size: 18px;
}
.dashboard-kpis,
.ops-stats,
.summer-stats,
.settings-grid,
.metric-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.kpi-card,
.ops-stats article,
.summer-stats article,
.setting-card,
.metric-card {
  min-height: 145px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  padding: 18px;
  position: relative;
  overflow: hidden;
}
.kpi-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--brand);
}
.kpi-card.tone-blue::before {
  background: var(--blue);
}
.kpi-card.tone-amber::before {
  background: var(--amber);
}
.kpi-card.tone-red::before {
  background: var(--red);
}
.kpi-card.tone-slate::before {
  background: #475467;
}
.kpi-card span,
.ops-stats span,
.summer-stats span,
.setting-card span,
.metric-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.kpi-card strong,
.ops-stats strong,
.summer-stats strong,
.setting-card strong,
.metric-card strong {
  display: block;
  margin-top: 16px;
  color: var(--text);
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
}
.kpi-card p,
.ops-stats p,
.summer-stats p,
.setting-card p,
.metric-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 650;
}
.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
}
.dashboard-side {
  display: grid;
  gap: 22px;
  align-content: start;
}
.dashboard-panel,
.quick-actions,
.panel,
.ops-card,
.summer-card,
.member-card,
.login-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}
.dashboard-panel,
.quick-actions,
.panel,
.ops-card,
.summer-card {
  padding: 22px;
  overflow: auto;
}
.panel-heading,
.card-title,
.table-toolbar,
.page-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}
.panel-heading {
  margin-bottom: 16px;
}
.panel-heading h3,
.card-title h3,
.panel h3 {
  margin: 0;
  color: var(--text);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 900;
}
.panel-heading p,
.card-title p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}
.panel-heading a,
.quick-actions a,
.event-banner a,
.card-title > span,
.mini-badge {
  text-decoration: none;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}
.panel-heading a {
  color: var(--brand-dark);
}
.quick-actions {
  background: var(--surface-strong);
  color: #ffffff;
}
.quick-actions .panel-heading h3 {
  color: #ffffff;
}
.quick-actions .panel-heading p {
  color: #98a2b3;
}
.quick-actions a {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  padding: 0 14px;
  background: #1d2939;
  color: #ffffff;
}
.quick-actions a::after {
  content: ">";
  color: #98a2b3;
}
.table-scroll,
.report-table-wrap {
  overflow: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}
th,
td {
  padding: 13px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
  white-space: nowrap;
}
th {
  color: var(--muted);
  background: var(--surface-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
td {
  color: #344054;
  font-size: 14px;
  font-weight: 650;
}
.member-cell {
  display: flex;
  align-items: center;
  gap: 12px;
}
.member-cell span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #f2f4f7;
  color: #475467;
  font-size: 12px;
  font-weight: 900;
}
.member-cell strong {
  color: var(--text);
}
.status-chip {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  padding: 0 9px;
  font-size: 12px;
  font-weight: 900;
}
.status-chip.success {
  background: var(--brand-soft);
  color: var(--brand-dark);
}
.status-chip.info {
  background: var(--blue-soft);
  color: #1d4ed8;
}
.status-chip.warning {
  background: var(--amber-soft);
  color: #b45309;
}
.mini-badge,
.card-title > span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  background: var(--surface-soft);
  color: var(--muted);
  padding: 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.revenue-list {
  display: grid;
  gap: 16px;
}
.revenue-list > div > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  color: #344054;
  font-size: 13px;
  font-weight: 800;
}
.progress-track {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: #f2f4f7;
  overflow: hidden;
}
.progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--brand);
}
.event-banner {
  min-height: 170px;
  border: 1px solid #bae6fd;
  border-radius: var(--radius);
  background:
    linear-gradient(
      120deg,
      #ecfdf3 0%,
      #eff6ff 100%);
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.event-banner span {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  border-radius: 999px;
  background: #ffffff;
  color: var(--brand-dark);
  padding: 0 10px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.event-banner h3 {
  max-width: 760px;
  margin: 14px 0 0;
  font-size: 28px;
  line-height: 1.18;
}
.event-banner p {
  max-width: 720px;
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 650;
}
.event-banner a,
.primary-action,
.ops-primary,
.summer-primary,
.ops-hero button,
.summer-hero button,
.table-action {
  border: 0;
  border-radius: 8px;
  background: var(--brand);
  color: #ffffff;
  min-height: 42px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  cursor: pointer;
  text-decoration: none;
}
.primary-action:hover,
.ops-primary:hover,
.summer-primary:hover,
.event-banner a:hover,
.table-action:hover {
  background: var(--brand-dark);
}
.primary-action:disabled,
.ops-primary:disabled,
.summer-primary:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.table-action {
  min-height: 30px;
  padding: 0 10px;
  margin-right: 6px;
  font-size: 12px;
}
.table-action.secondary {
  background: #344054;
}
.table-action.pay {
  background: var(--blue);
}
.secondary-action,
.icon-button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--text);
  padding: 0 14px;
  font-weight: 850;
  cursor: pointer;
}
.page-header {
  align-items: center;
  margin-bottom: 22px;
  padding: 22px;
}
.split-grid,
.content-grid,
.ops-grid,
.summer-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(520px, 1.2fr);
  gap: 22px;
}
.summer-grid-wide {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}
.form-panel,
.ops-form,
.summer-form {
  display: grid;
  gap: 14px;
  align-content: start;
}
.compact-form {
  max-width: 760px;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
label {
  display: grid;
  gap: 7px;
  color: #344054;
  font-size: 13px;
  font-weight: 850;
}
input,
select,
textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #ffffff;
  color: var(--text);
  padding: 10px 12px;
  outline: 0;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(4, 120, 87, 0.12);
}
textarea {
  min-height: 84px;
  resize: vertical;
}
.check-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.check-row input {
  width: auto;
  min-height: auto;
}
.guest-paid {
  align-self: end;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  background: var(--surface-soft);
}
.ops-hero,
.summer-hero {
  min-height: 168px;
  padding: 28px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  background:
    linear-gradient(
      120deg,
      #ffffff 0%,
      #f0fdf4 100%);
}
.guest-hero {
  background:
    linear-gradient(
      120deg,
      #ffffff 0%,
      #eff6ff 100%);
}
.staff-hero {
  background:
    linear-gradient(
      120deg,
      #ffffff 0%,
      #f5f3ff 100%);
}
.reports-hero {
  background:
    linear-gradient(
      120deg,
      #ffffff 0%,
      #fffbeb 100%);
}
.settings-hero {
  background:
    linear-gradient(
      120deg,
      #ffffff 0%,
      #f8fafc 100%);
}
.ops-hero span,
.summer-hero span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  padding: 0 10px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.settings-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.settings-list,
.ops-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.settings-list label,
.ops-list li {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
  padding: 12px 14px;
  color: #475467;
  font-weight: 750;
}
.settings-list input {
  width: auto;
  min-height: auto;
  margin-right: 10px;
}
.profile-preview,
.pass-box {
  min-height: 170px;
  border-radius: var(--radius);
  background: var(--surface-strong);
  color: #ffffff;
  padding: 22px;
  display: grid;
  align-content: center;
  gap: 10px;
}
.profile-preview strong,
.pass-box strong {
  font-size: 28px;
  font-weight: 900;
}
.profile-preview span {
  color: #86efac;
  font-weight: 850;
}
.profile-preview p,
.pass-box p {
  margin: 0;
  color: #d0d5dd;
  line-height: 1.5;
}
.qr-pass-box {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: var(--surface-soft);
}
.qr-art {
  width: 170px;
  height: 170px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}
.qr-art svg {
  width: 148px;
  height: 148px;
  display: block;
}
.qr-pass-box strong {
  display: block;
  font-size: 22px;
  color: var(--text);
}
.qr-pass-box span,
.qr-pass-box p,
.qr-pass-box a {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-weight: 700;
  word-break: break-word;
}
.qr-pass-box a {
  color: var(--brand-dark);
}
.email-result,
.summer-message,
.scan-result {
  margin: 0;
  border-radius: 8px;
  padding: 10px 12px;
  font-weight: 800;
}
.email-result,
.summer-message,
.scan-result.good,
.email-result.good {
  border: 1px solid #bbf7d0;
  background: var(--brand-soft);
  color: var(--brand-dark);
}
.scan-result,
.email-result:not(.good) {
  border: 1px solid #fecaca;
  background: var(--red-soft);
  color: var(--red);
}
.guest-scan-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--bg);
}
.guest-scan-card {
  width: min(460px, 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 34px;
  text-align: center;
  box-shadow: var(--shadow);
}
.guest-scan-card.good {
  border-color: #86efac;
}
.guest-scan-card.bad {
  border-color: #fecaca;
}
.guest-scan-card img {
  width: 150px;
  margin: 0 auto 18px;
}
.guest-scan-card span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  padding: 0 12px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.guest-scan-card h1 {
  margin: 18px 0 0;
  font-size: 28px;
}
.guest-scan-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 700;
}
.report-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.report-tabs button {
  min-height: 92px;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 16px;
  cursor: pointer;
}
.report-tabs button.active {
  border-color: var(--brand);
  background: var(--brand-soft);
}
.report-tabs strong {
  display: block;
  color: var(--text);
  font-weight: 900;
}
.report-tabs span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.program-list {
  display: grid;
  gap: 12px;
}
.program-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--surface-soft);
  padding: 16px;
}
.program-row strong {
  display: block;
  color: var(--text);
  font-weight: 900;
}
.program-row span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}
.program-numbers {
  text-align: right;
  white-space: nowrap;
}
.auth-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(520px, 1fr) 460px;
  gap: 48px;
  align-items: center;
  padding: 48px;
  background:
    linear-gradient(
      135deg,
      rgba(236, 253, 243, 0.92),
      rgba(239, 246, 255, 0.94)),
    var(--bg);
}
.auth-story {
  max-width: 780px;
}
.auth-story img {
  width: 150px;
  display: block;
  margin-bottom: 34px;
}
.auth-story span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  background: #ffffff;
  color: var(--brand-dark);
  padding: 0 12px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.auth-story h1 {
  margin: 18px 0 0;
  color: var(--text);
  font-size: 52px;
  line-height: 1.02;
  letter-spacing: 0;
}
.auth-story p {
  max-width: 660px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 650;
}
.auth-card {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  padding: 28px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}
.auth-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}
.auth-card-header img {
  width: 88px;
}
.auth-card-header h2,
.auth-card-header p {
  margin: 0;
}
.auth-card-header h2 {
  font-size: 26px;
}
.auth-card-header p,
.hint {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.form-error {
  margin: 0;
  color: var(--red);
  font-weight: 800;
}
.member-card {
  min-height: 220px;
  padding: 24px;
  display: grid;
  align-content: center;
  gap: 14px;
  background: var(--amber-soft);
}
.member-card strong {
  font-size: 28px;
}
.member-card code {
  white-space: pre-wrap;
  word-break: break-word;
}
.activity-list {
  display: grid;
  gap: 12px;
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.bars {
  height: 220px;
  display: flex;
  align-items: end;
  gap: 14px;
  padding-top: 28px;
}
.bars span {
  flex: 1;
  border-radius: 8px 8px 0 0;
  background: var(--brand);
}
@media (max-width: 1280px) {
  body {
    min-width: 1024px;
  }
  .saas-shell {
    grid-template-columns: 240px minmax(0, 1fr);
  }
  .saas-brand img {
    width: 64px;
  }
  .dashboard-kpis,
  .ops-stats,
  .summer-stats,
  .settings-grid,
  .metric-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .dashboard-grid,
  .ops-grid,
  .summer-grid,
  .summer-grid-wide,
  .split-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }
  .report-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .auth-page {
    grid-template-columns: 1fr;
  }
  .auth-card {
    max-width: 500px;
  }
}
.fees-page {
  display: grid;
  gap: 24px;
}
.fees-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.fees-header span {
  color: #047857;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.fees-header h2 {
  margin: 12px 0 0;
  color: #111827;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.03em;
}
.fees-header-actions {
  display: flex;
  gap: 12px;
}
.fees-header-actions button {
  min-height: 46px;
  border: 1px solid #d8dee8;
  border-radius: 6px;
  background: #ffffff;
  color: #344054;
  padding: 0 18px;
  font-weight: 900;
  cursor: pointer;
}
.fees-header-actions button.primary {
  border-color: #047857;
  background: #047857;
  color: #ffffff;
}
.fees-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.fees-kpis article,
.fees-transactions,
.collect-card,
.receipt-preview {
  border: 1px solid #d8dee8;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}
.fees-kpis article {
  min-height: 160px;
  padding: 28px;
}
.fees-kpis span {
  color: #344054;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.fees-kpis strong {
  display: block;
  margin-top: 26px;
  color: #111827;
  font-size: 24px;
  font-weight: 850;
}
.fees-kpis p {
  margin: 28px 0 0;
  color: #047857;
  font-size: 14px;
  font-weight: 850;
}
.fees-kpis article.danger strong,
.fees-kpis article.danger p {
  color: #b91c1c;
}
.fees-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 30px;
  align-items: start;
}
.fees-transactions {
  min-height: 760px;
  overflow: hidden;
}
.fees-card-heading {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 30px;
  border-bottom: 1px solid #d8dee8;
}
.fees-card-heading h3,
.collect-card h3,
.receipt-heading h3 {
  margin: 0;
  color: #111827;
  font-size: 22px;
  font-weight: 850;
}
.fees-card-heading p {
  margin: 6px 0 0;
  color: #667085;
  font-weight: 650;
}
.fees-card-heading select {
  width: 138px;
  min-height: 44px;
}
.fees-transactions table {
  margin: 0;
}
.fees-transactions th {
  padding: 18px 30px;
  background: #f3f6fb;
}
.fees-transactions td {
  padding: 24px 30px;
  font-size: 18px;
}
.fees-transactions td:first-child strong {
  color: #111827;
  font-size: 20px;
  letter-spacing: 0.04em;
}
.fee-student {
  display: flex;
  align-items: center;
  gap: 14px;
}
.fee-student span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #e8f0ff;
  color: #344054;
  font-size: 13px;
  font-weight: 950;
}
.fee-student strong,
.fee-student small {
  display: block;
}
.fee-student small {
  margin-top: 4px;
  color: #667085;
  font-size: 12px;
  font-weight: 700;
}
.fees-transactions tbody tr:nth-child(2) .fee-student span {
  background: #86efac;
  color: #047857;
}
.fees-transactions tbody tr:nth-child(4) .fee-student span {
  background: #fbbf24;
  color: #92400e;
}
.due-amount {
  color: #b91c1c !important;
  font-weight: 900 !important;
}
.fee-status {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border-radius: 999px;
  padding: 0 12px;
  background: #d1fadf;
  color: #047857;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.fee-status.partial {
  background: #fef3c7;
  color: #b45309;
}
.fee-status.overdue {
  background: #fee2e2;
  color: #b91c1c;
}
.fee-menu {
  border: 0;
  background: transparent;
  color: #111827;
  font-weight: 900;
  cursor: pointer;
}
.view-transactions {
  width: 100%;
  min-height: 64px;
  border: 0;
  border-top: 1px solid #d8dee8;
  background: #ffffff;
  color: #047857;
  font-size: 16px;
  font-weight: 950;
  cursor: pointer;
}
.fees-side {
  display: grid;
  gap: 28px;
}
.collect-card {
  display: grid;
  gap: 18px;
  padding: 30px;
}
.collect-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}
.collect-card label {
  color: #344054;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.collect-card input,
.collect-card select {
  min-height: 54px;
  font-size: 16px;
}
.collect-card textarea {
  min-height: 82px;
}
.collect-submit {
  min-height: 58px;
  border: 0;
  border-radius: 6px;
  background: #047857;
  color: #ffffff;
  font-size: 17px;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(4, 120, 87, 0.2);
}
.collect-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.receipt-preview {
  border-style: dashed;
  border-width: 2px;
  background: #eef2f7;
  padding: 28px 30px;
}
.receipt-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.receipt-heading h3 {
  color: #344054;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.receipt-heading span {
  color: #667085;
  font-weight: 900;
}
.receipt-paper {
  border-radius: 6px;
  background: #ffffff;
  padding: 28px;
  text-align: center;
}
.receipt-paper > strong,
.receipt-paper > small {
  display: block;
}
.receipt-paper > strong {
  color: #111827;
  font-size: 15px;
  letter-spacing: 0.12em;
}
.receipt-paper > small {
  margin-top: 6px;
  color: #667085;
  font-weight: 700;
}
.receipt-paper dl {
  display: grid;
  gap: 14px;
  margin: 24px 0;
  border-top: 1px solid #eef2f7;
  padding-top: 20px;
}
.receipt-paper dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
}
.receipt-paper dt {
  color: #667085;
  font-weight: 700;
}
.receipt-paper dd {
  margin: 0;
  color: #111827;
  font-weight: 900;
  text-align: right;
}
.receipt-paper p {
  margin: 0;
  background: #f8fafc;
  color: #98a2b3;
  padding: 14px;
  font-size: 12px;
  font-style: italic;
}
@media (max-width: 1280px) {
  .fees-kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .fees-layout {
    grid-template-columns: 1fr;
  }
}
.attendance-simple {
  display: grid;
  gap: 22px;
}
.attendance-hero {
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: 12px;
  background:
    linear-gradient(
      135deg,
      #ffffff 0%,
      #ecfdf3 100%);
  border: 1px solid #dbe3ed;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.07);
  padding: 28px;
}
.attendance-hero h2 {
  margin: 14px 0 0;
  color: #111827;
  font-size: 36px;
  line-height: 1.08;
  font-weight: 950;
}
.attendance-hero p {
  max-width: 720px;
  margin: 10px 0 0;
  color: #667085;
  font-size: 16px;
  font-weight: 650;
}
.attendance-hero button,
.scan-desk-card button,
.manual-desk-card button {
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  background: #047857;
  color: #ffffff;
  padding: 0 18px;
  font-weight: 950;
  cursor: pointer;
}
.attendance-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.attendance-summary article,
.scan-desk-card,
.manual-desk-card,
.attendance-log-card {
  border: 1px solid #dbe3ed;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}
.attendance-summary article {
  padding: 20px;
}
.attendance-summary span {
  color: #667085;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.attendance-summary strong {
  display: block;
  margin-top: 10px;
  color: #111827;
  font-size: 32px;
  line-height: 1;
  font-weight: 950;
}
.attendance-main {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  gap: 22px;
  align-items: start;
}
.scan-desk-card,
.manual-desk-card {
  display: grid;
  gap: 18px;
  padding: 24px;
}
.scan-desk-card > div:first-child span,
.simple-card-heading span {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border-radius: 999px;
  background: #ecfdf3;
  color: #047857;
  padding: 0 10px;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.scan-desk-card h3,
.simple-card-heading h3 {
  margin: 12px 0 0;
  color: #111827;
  font-size: 24px;
  font-weight: 950;
}
.scan-desk-card p,
.simple-card-heading p {
  margin: 6px 0 0;
  color: #667085;
  font-size: 14px;
  font-weight: 650;
}
.scan-desk-card input {
  min-height: 64px;
  font-size: 20px;
  font-weight: 800;
}
.scan-desk-card button {
  min-height: 58px;
  font-size: 18px;
}
.manual-desk-card button:disabled,
.scan-desk-card button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.quick-toggle {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.quick-toggle label {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dbe3ed;
  border-radius: 8px;
  background: #f8fafc;
  color: #344054;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}
.quick-toggle input {
  width: auto;
  min-height: auto;
  margin-right: 8px;
}
.simple-scan-result {
  border: 1px solid #fecaca;
  border-radius: 10px;
  background: #fef2f2;
  color: #dc2626;
  padding: 16px;
  display: grid;
  gap: 4px;
}
.simple-scan-result.good {
  border-color: #bbf7d0;
  background: #ecfdf3;
  color: #047857;
}
.simple-scan-result strong,
.simple-scan-result span {
  display: block;
}
.attendance-log-card {
  padding: 24px;
}
.attendance-log-card .simple-card-heading {
  margin-bottom: 16px;
}
@media (max-width: 1280px) {
  .attendance-main {
    grid-template-columns: 1fr;
  }
  .attendance-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.guest-desk {
  display: grid;
  gap: 24px;
}
.guest-desk-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.guest-desk-header h2 {
  margin: 14px 0 0;
  color: #111827;
  font-size: 38px;
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: 0.06em;
}
.guest-desk-header p {
  margin: 12px 0 0;
  color: #4b5563;
  font-size: 18px;
  font-weight: 600;
}
.guest-total-card {
  min-width: 220px;
  border: 1px solid #dbe3ed;
  border-radius: 8px;
  background: #eef4ff;
  padding: 18px 22px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.05);
}
.guest-total-card span {
  display: block;
  color: #344054;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.guest-total-card strong {
  display: block;
  margin-top: 6px;
  color: #111827;
  font-size: 24px;
  font-weight: 950;
}
.guest-workspace {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}
.guest-left-rail {
  display: grid;
  gap: 24px;
}
.guest-entry-card,
.guest-activity-card,
.guest-insights article {
  border: 1px solid #dbe3ed;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}
.guest-entry-card {
  display: grid;
  gap: 18px;
  padding: 28px 30px 30px;
}
.guest-card-title,
.digital-pass-heading,
.guest-activity-header,
.guest-table-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.guest-card-title h3,
.digital-pass-heading h3,
.guest-activity-header h3 {
  margin: 0;
  color: #111827;
  font-size: 24px;
  font-weight: 950;
  letter-spacing: 0.05em;
}
.guest-card-title p {
  margin: 6px 0 0;
  color: #667085;
  font-size: 13px;
  font-weight: 650;
}
.guest-card-title span,
.digital-pass-heading span,
.guest-activity-header span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  border-radius: 999px;
  background: #d1fadf;
  color: #047857;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.guest-entry-card label {
  color: #1f2937;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.guest-entry-card input,
.guest-entry-card select {
  min-height: 52px;
  background: #ffffff;
  border-color: #d8dee8;
  font-size: 16px;
}
.guest-entry-card .guest-paid {
  min-height: 48px;
  text-transform: none;
  letter-spacing: 0;
}
.guest-submit {
  min-height: 58px;
  border: 0;
  border-radius: 7px;
  background: #047857;
  color: #ffffff;
  font-size: 18px;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(4, 120, 87, 0.22);
}
.guest-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.digital-pass-card {
  border-radius: 8px;
  background: #0b1220;
  color: #ffffff;
  padding: 28px 30px;
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.24);
}
.digital-pass-heading {
  margin-bottom: 26px;
}
.digital-pass-heading h3 {
  color: #ffffff;
  font-size: 20px;
}
.ticket-shell {
  border-radius: 6px;
  background: #ffffff;
  color: #111827;
  padding: 22px;
  text-align: center;
}
.ticket-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px dashed #d0d5dd;
  padding-bottom: 18px;
  text-align: left;
}
.ticket-brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 999px;
  background: #0b1220;
  padding: 4px;
}
.ticket-brand div {
  margin-right: auto;
}
.ticket-brand strong,
.ticket-brand span {
  display: block;
}
.ticket-brand strong {
  font-size: 13px;
  letter-spacing: 0.18em;
}
.ticket-brand span {
  margin-top: 4px;
  color: #98a2b3;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.ticket-qr,
.ticket-placeholder {
  width: 160px;
  height: 160px;
  display: grid;
  place-items: center;
  margin: 22px auto;
  background: #f8fafc;
  border: 1px solid #eef2f7;
}
.ticket-qr svg {
  width: 136px;
  height: 136px;
  display: block;
}
.ticket-placeholder {
  color: #111827;
  font-size: 42px;
  font-weight: 950;
  letter-spacing: 0.08em;
}
.ticket-shell h4 {
  margin: 0;
  color: #111827;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.ticket-shell p {
  margin: 8px 0 0;
  color: #667085;
  font-size: 16px;
  font-weight: 700;
}
.ticket-message {
  display: block;
  margin-top: 14px;
  border-radius: 7px;
  background: #fef2f2;
  color: #dc2626;
  padding: 9px;
  font-weight: 850;
}
.ticket-message.good {
  background: #ecfdf3;
  color: #047857;
}
.ticket-shell button,
.ticket-actions a {
  min-height: 46px;
  margin-top: 18px;
  border: 0;
  border-radius: 7px;
  background: #047857;
  color: #ffffff;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 950;
  cursor: pointer;
}
.ticket-shell.empty {
  opacity: 0.96;
}
.guest-activity-card {
  min-height: 840px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
}
.guest-activity-header {
  padding: 30px;
  border-bottom: 1px solid #eef2f7;
}
.guest-activity-header > div:first-child {
  display: flex;
  align-items: center;
  gap: 12px;
}
.guest-toolbar {
  display: flex;
  gap: 10px;
}
.guest-toolbar button,
.guest-table-footer button,
.guest-actions button {
  min-height: 42px;
  border: 1px solid #d8dee8;
  border-radius: 6px;
  background: #ffffff;
  color: #344054;
  padding: 0 16px;
  font-weight: 900;
  cursor: pointer;
}
.guest-toolbar button.dark,
.guest-actions button.dark {
  border-color: #0b1220;
  background: #0b1220;
  color: #ffffff;
}
.guest-table-wrap {
  overflow: auto;
}
.guest-table {
  margin: 0;
}
.guest-table th {
  padding: 18px 30px;
  background: #f8fafc;
  color: #344054;
}
.guest-table td {
  padding: 24px 30px;
  vertical-align: middle;
}
.guest-table td strong,
.guest-table td small {
  display: block;
}
.guest-table td strong {
  color: #111827;
  font-size: 15px;
  font-weight: 850;
}
.guest-table td small {
  margin-top: 6px;
  color: #667085;
  font-size: 13px;
  font-weight: 650;
}
.guest-person {
  display: flex;
  align-items: center;
  gap: 14px;
}
.guest-person > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #f2f4f7;
  color: #667085;
  font-weight: 950;
}
.guest-table tbody tr:nth-child(even) .guest-person > span {
  background: #d1fadf;
  color: #047857;
}
.guest-pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border-radius: 999px;
  background: #f2f4f7;
  color: #667085;
  padding: 0 12px;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}
.guest-pill.paid,
.guest-pill.status {
  background: #d1fadf;
  color: #047857;
}
.guest-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  min-width: 238px;
}
.guest-actions button {
  min-height: 36px;
  padding: 0 12px;
  font-size: 12px;
}
.guest-actions button.pay {
  border-color: #2563eb;
  background: #2563eb;
  color: #ffffff;
}
.guest-actions button.ghost {
  border-color: #047857;
  background: #ecfdf3;
  color: #047857;
}
.guest-empty {
  min-height: 180px;
  display: grid;
  place-items: center;
  color: #667085;
  font-weight: 800;
}
.guest-table-footer {
  min-height: 82px;
  padding: 0 30px;
  border-top: 1px solid #eef2f7;
  color: #667085;
  font-weight: 700;
}
.guest-table-footer div {
  display: flex;
  gap: 10px;
}
.guest-insights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}
.guest-insights article {
  min-height: 150px;
  padding: 28px 30px;
}
.guest-insights span {
  color: #344054;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.guest-insights strong {
  display: block;
  margin-top: 14px;
  color: #111827;
  font-size: 34px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.06em;
}
.guest-insights p {
  margin: 16px 0 0;
  color: #047857;
  font-size: 13px;
  font-weight: 900;
}
.floating-qr {
  position: fixed;
  right: 38px;
  bottom: 38px;
  z-index: 30;
  width: 70px;
  height: 70px;
  border: 0;
  border-radius: 16px;
  background: #047857;
  color: #ffffff;
  font-weight: 950;
  box-shadow: 0 20px 44px rgba(4, 120, 87, 0.32);
  cursor: pointer;
}
@media (max-width: 1280px) {
  .guest-workspace {
    grid-template-columns: 1fr;
  }
  .guest-left-rail {
    grid-template-columns: 1fr 1fr;
  }
  .guest-activity-card {
    min-height: 680px;
  }
  .guest-insights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
body {
  background:
    linear-gradient(
      180deg,
      #f8fafc 0%,
      #eef2f7 42%,
      #f6f8fb 100%);
}
.saas-shell {
  grid-template-columns: 286px minmax(0, 1fr);
  background:
    linear-gradient(
      90deg,
      #0b1220 0,
      #0b1220 286px,
      transparent 286px),
    var(--bg);
}
.saas-sidebar {
  background: #0b1220;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 18px;
  color: #ffffff;
}
.saas-brand {
  min-height: 82px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 8px 22px;
}
.saas-brand img {
  width: 76px;
  border-radius: 12px;
  background: #ffffff;
  padding: 7px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
}
.saas-brand strong {
  color: #ffffff;
  font-size: 18px;
}
.saas-brand span {
  color: #9ca3af;
}
.saas-nav {
  gap: 7px;
  margin-top: 22px;
}
.saas-nav a {
  min-height: 48px;
  border: 1px solid transparent;
  color: #cbd5e1;
  padding: 0 12px;
}
.saas-nav a span {
  background: rgba(255, 255, 255, 0.08);
  color: #a7f3d0;
}
.saas-nav a:hover,
.saas-nav a.active {
  background: rgba(16, 185, 129, 0.14);
  border-color: rgba(16, 185, 129, 0.28);
  color: #ffffff;
}
.saas-nav a:hover span,
.saas-nav a.active span {
  background: #10b981;
  color: #052e16;
}
.saas-sidebar-footer {
  border: 1px solid rgba(16, 185, 129, 0.22);
  background:
    linear-gradient(
      180deg,
      rgba(16, 185, 129, 0.16),
      rgba(15, 23, 42, 0.88));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.saas-sidebar-footer span {
  color: #a7f3d0;
}
.saas-sidebar-footer strong {
  color: #ffffff;
}
.saas-sidebar-footer button {
  background: #ffffff;
  color: #064e3b;
}
.saas-topbar {
  height: 78px;
  background: rgba(248, 250, 252, 0.86);
  border-bottom: 1px solid rgba(208, 213, 221, 0.72);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}
.saas-search {
  height: 46px;
  background: #ffffff;
  border-color: #dbe3ed;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.05);
}
.saas-search span {
  min-width: 48px;
  min-height: 24px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: #eef2f7;
  color: #667085;
  font-size: 10px;
  letter-spacing: 0.08em;
}
.saas-user-actions > button {
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(16, 24, 40, 0.04);
}
.saas-avatar {
  background:
    linear-gradient(
      135deg,
      #111827,
      #047857);
  box-shadow: 0 10px 24px rgba(4, 120, 87, 0.22);
}
.saas-content {
  padding: 32px;
}
.dashboard-header {
  min-height: 176px;
  background:
    linear-gradient(
      135deg,
      #111827 0%,
      #16352f 58%,
      #0f766e 100%);
  border: 0;
  color: #ffffff;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.16);
}
.dashboard-header h2 {
  color: #ffffff;
  font-size: 38px;
}
.dashboard-header p {
  color: #d1d5db;
}
.dashboard-header .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: #a7f3d0;
}
.dashboard-date {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.dashboard-date span {
  color: #a7f3d0;
}
.dashboard-kpis,
.ops-stats,
.summer-stats,
.settings-grid,
.metric-grid {
  gap: 18px;
}
.kpi-card,
.ops-stats article,
.summer-stats article,
.setting-card,
.metric-card,
.dashboard-panel,
.quick-actions,
.panel,
.ops-card,
.summer-card,
.member-card,
.report-tabs button {
  border: 1px solid rgba(208, 213, 221, 0.78);
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.07);
}
.kpi-card {
  min-height: 152px;
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #fbfcfe 100%);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.kpi-card:hover,
.dashboard-panel:hover,
.ops-card:hover,
.summer-card:hover,
.panel:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.1);
}
.kpi-card::before {
  height: 5px;
}
.kpi-card strong,
.ops-stats strong,
.summer-stats strong,
.setting-card strong,
.metric-card strong {
  font-size: 32px;
  letter-spacing: -0.02em;
}
.dashboard-grid {
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 24px;
}
.dashboard-panel,
.ops-card,
.summer-card,
.panel {
  background: rgba(255, 255, 255, 0.96);
}
.panel-heading,
.card-title {
  padding-bottom: 14px;
  border-bottom: 1px solid #eef2f7;
}
.attendance-panel .panel-heading,
.quick-actions .panel-heading {
  border-bottom: 0;
  padding-bottom: 0;
}
th {
  background: #f8fafc;
  color: #667085;
}
tbody tr {
  transition: background 0.14s ease;
}
tbody tr:hover {
  background: #f8fafc;
}
.status-chip {
  min-height: 26px;
  padding: 0 10px;
}
.quick-actions {
  background:
    linear-gradient(
      135deg,
      #0b1220 0%,
      #101828 54%,
      #064e3b 100%);
  border: 0;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.18);
}
.quick-actions a {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.16s ease, transform 0.16s ease;
}
.quick-actions a:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateX(3px);
}
.event-banner {
  background:
    linear-gradient(
      135deg,
      #ecfdf3 0%,
      #eef2ff 58%,
      #fff7ed 100%);
  border-color: #d1fadf;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}
.event-banner h3 {
  letter-spacing: -0.02em;
}
.primary-action,
.ops-primary,
.summer-primary,
.ops-hero button,
.summer-hero button,
.table-action,
.event-banner a {
  box-shadow: 0 10px 20px rgba(4, 120, 87, 0.16);
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    background 0.16s ease;
}
.primary-action:hover,
.ops-primary:hover,
.summer-primary:hover,
.ops-hero button:hover,
.summer-hero button:hover,
.table-action:hover,
.event-banner a:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(4, 120, 87, 0.22);
}
input,
select,
textarea {
  background: #fbfcfe;
}
input:focus,
select:focus,
textarea:focus {
  background: #ffffff;
}
.ops-hero,
.summer-hero,
.page-header {
  background: #ffffff;
  border-color: rgba(208, 213, 221, 0.78);
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.06);
}
.guest-hero,
.staff-hero,
.reports-hero,
.settings-hero {
  background:
    linear-gradient(
      135deg,
      #ffffff 0%,
      #f8fafc 55%,
      #ecfdf3 100%);
}
.auth-page {
  background: #f5f7fb;
  position: relative;
  overflow: hidden;
}
.auth-page::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 48%;
  background:
    linear-gradient(
      145deg,
      #06131f 0%,
      #0b2b24 100%);
  z-index: 0;
}
.auth-page::after {
  content: "";
  position: absolute;
  left: 48%;
  top: 0;
  width: 120px;
  height: 100%;
  background: #f5f7fb;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  z-index: 0;
}
.auth-story,
.auth-card {
  position: relative;
  z-index: 1;
}
.auth-story {
  color: #ffffff;
  padding-right: 56px;
}
.auth-story h1 {
  max-width: 780px;
  color: #ffffff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.24);
}
.auth-story p {
  max-width: 640px;
  color: #d6e0ea;
}
.auth-story span {
  background: rgba(255, 255, 255, 0.12);
  color: #a7f3d0;
}
.auth-story img {
  border-radius: 16px;
  background: #ffffff;
  padding: 10px;
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.24);
}
.auth-card {
  border: 0;
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.16);
}
@media (max-width: 1280px) {
  .saas-shell {
    grid-template-columns: 250px minmax(0, 1fr);
    background:
      linear-gradient(
        90deg,
        #0b1220 0,
        #0b1220 250px,
        transparent 250px),
      var(--bg);
  }
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
  .dashboard-kpis,
  .ops-stats,
  .summer-stats,
  .settings-grid,
  .metric-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
