:root {
  --bg: #f3f0e8;
  --panel: rgba(255, 255, 255, 0.78);
  --panel-strong: #ffffff;
  --line: rgba(69, 56, 35, 0.12);
  --ink: #1f2937;
  --muted: #6b7280;
  --premium: #b59049;
  --premium-deep: #7a5c2a;
  --premium-soft: rgba(181, 144, 73, 0.12);
  --success: #166534;
  --danger: #991b1b;
  --shadow: 0 24px 60px rgba(35, 28, 18, 0.14);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at top left, rgba(212, 184, 123, 0.22), transparent 28%),
    linear-gradient(180deg, #f7f4ed 0%, #eee8db 100%);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.is-hidden {
  display: none !important;
}

.ops-app {
  min-height: 100vh;
}

.login-shell {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 32px;
}

.login-card {
  width: min(1080px, 100%);
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 28px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.login-copy,
.login-form,
.sidebar-card,
.surface-card,
.hero-panel {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
}

.login-copy {
  padding: 34px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--premium-soft);
  color: var(--premium-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.login-copy h1,
.hero-panel h2 {
  margin: 18px 0 12px;
  font-family: "Sora", sans-serif;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.02;
}

.login-copy p,
.hero-panel p,
.empty-state p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.login-points {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.login-points li {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  font-weight: 700;
}

.login-form {
  padding: 28px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.field,
.search-field {
  display: grid;
  gap: 8px;
}

.field span {
  color: var(--premium-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.field input,
.search-field input {
  width: 100%;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(122, 92, 42, 0.18);
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  outline: none;
}

.field input:focus,
.search-field input:focus {
  border-color: rgba(181, 144, 73, 0.56);
  box-shadow: 0 0 0 4px rgba(181, 144, 73, 0.12);
}

.primary-button,
.logout-button,
.ghost-button {
  border: 0;
  border-radius: 16px;
  transition: transform 180ms ease, opacity 180ms ease, box-shadow 180ms ease;
}

.primary-button:hover,
.logout-button:hover,
.ghost-button:hover {
  transform: translateY(-1px);
}

.primary-button {
  padding: 16px 18px;
  background: linear-gradient(135deg, var(--premium) 0%, var(--premium-deep) 100%);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(122, 92, 42, 0.22);
}

.form-status,
.sync-note {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.dashboard-shell {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  min-height: 100vh;
}

.sidebar {
  padding: 22px;
  border-right: 1px solid rgba(69, 56, 35, 0.08);
  background: rgba(248, 244, 236, 0.78);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 6px 4px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #2d2210 0%, var(--premium) 100%);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.brand-block strong {
  display: block;
  font-family: "Sora", sans-serif;
}

.brand-block p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.sidebar-card,
.surface-card,
.hero-panel,
.empty-state {
  border-radius: var(--radius-xl);
  box-shadow: 0 12px 30px rgba(48, 37, 19, 0.06);
}

.sidebar-card {
  padding: 18px;
}

.sidebar-card--stats {
  background:
    linear-gradient(135deg, rgba(181, 144, 73, 0.14) 0%, rgba(255, 255, 255, 0.86) 100%);
}

.sidebar-card__head,
.surface-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.sidebar-card__head span:first-child,
.surface-card__head span:first-child {
  font-weight: 800;
}

.ghost-button {
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
  font-weight: 700;
}

.stat-grid,
.mini-stats {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stat-card,
.mini-stat {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
}

.stat-card span,
.mini-stat span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.stat-card strong,
.mini-stat strong {
  display: block;
  margin-top: 6px;
  font-size: 28px;
  font-family: "Sora", sans-serif;
}

.pill,
.hero-chip,
.chip,
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.pill,
.hero-chip {
  background: rgba(255, 255, 255, 0.8);
  color: var(--premium-deep);
  border: 1px solid rgba(122, 92, 42, 0.14);
}

.hero-chip--muted {
  color: var(--muted);
}

.business-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: calc(100vh - 440px);
  overflow: auto;
}

.business-item {
  width: 100%;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  text-align: left;
  display: grid;
  gap: 10px;
}

.business-item.is-active {
  border-color: rgba(181, 144, 73, 0.44);
  background: linear-gradient(135deg, rgba(181, 144, 73, 0.14), rgba(255, 255, 255, 0.92));
}

.business-item__top,
.business-item__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.business-item strong {
  font-size: 15px;
}

.business-item small {
  color: var(--muted);
}

.content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-panel,
.empty-state {
  padding: 24px;
}

.hero-panel {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  background:
    radial-gradient(circle at top right, rgba(181, 144, 73, 0.14), transparent 24%),
    rgba(255, 255, 255, 0.72);
}

.hero-panel h2 {
  font-size: clamp(26px, 4vw, 42px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.detail-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.overview-grid,
.detail-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.surface-card {
  padding: 22px;
}

.info-list {
  display: grid;
  gap: 12px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
}

.info-row span {
  color: var(--muted);
  font-weight: 700;
}

.info-row strong {
  text-align: right;
}

.branch-grid,
.team-stack,
.booking-feed {
  display: grid;
  gap: 14px;
}

.branch-card,
.team-card,
.booking-card {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
}

.branch-card__meta,
.team-card__meta,
.booking-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.team-card__top,
.booking-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
}

.team-card__identity strong,
.booking-card__identity strong,
.branch-card strong {
  display: block;
  font-size: 18px;
}

.team-card__identity small,
.booking-card__identity small,
.branch-card p {
  color: var(--muted);
}

.chip {
  background: rgba(17, 24, 39, 0.06);
  color: var(--ink);
  border: 1px solid rgba(17, 24, 39, 0.08);
}

.chip.is-success,
.tag.is-active {
  background: rgba(22, 101, 52, 0.1);
  color: var(--success);
}

.chip.is-danger,
.tag.is-inactive {
  background: rgba(153, 27, 27, 0.08);
  color: var(--danger);
}

.permissions,
.hours-grid,
.timeoff-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.services-table {
  display: grid;
  gap: 10px;
}

.service-row {
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
}

.service-row__top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.service-row__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.logout-button {
  margin-top: auto;
  padding: 15px 18px;
  background: rgba(31, 41, 55, 0.92);
  color: #fff;
  font-weight: 800;
}

.empty-state {
  display: grid;
  place-items: center;
  min-height: 240px;
  text-align: center;
  background: rgba(255, 255, 255, 0.55);
}

.toast-stack {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: grid;
  gap: 10px;
  z-index: 30;
}

.toast {
  min-width: 280px;
  max-width: 360px;
  padding: 14px 16px;
  border-radius: 18px;
  color: #fff;
  background: rgba(17, 24, 39, 0.94);
  box-shadow: var(--shadow);
}

.toast.is-success {
  background: rgba(22, 101, 52, 0.94);
}

.toast.is-error {
  background: rgba(153, 27, 27, 0.94);
}

@media (max-width: 1120px) {
  .dashboard-shell,
  .login-card,
  .overview-grid,
  .detail-split {
    grid-template-columns: 1fr;
  }

  .business-list {
    max-height: 320px;
  }
}

@media (max-width: 720px) {
  .login-shell,
  .content,
  .sidebar {
    padding: 16px;
  }

  .login-card,
  .hero-panel,
  .sidebar-card,
  .surface-card,
  .empty-state {
    border-radius: 24px;
  }

  .hero-panel {
    align-items: flex-start;
  }
}

/* Ops panel refresh */

:root {
  --bg: #0d1220;
  --panel: rgba(17, 24, 39, 0.72);
  --panel-strong: rgba(15, 23, 42, 0.94);
  --line: rgba(255, 255, 255, 0.09);
  --ink: #edf2ff;
  --muted: #94a3b8;
  --premium: #d4a54a;
  --premium-deep: #f5d089;
  --premium-soft: rgba(212, 165, 74, 0.16);
  --shadow: 0 30px 80px rgba(2, 6, 23, 0.45);
}

html,
body {
  background:
    radial-gradient(circle at 12% 18%, rgba(212, 165, 74, 0.16), transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(80, 122, 255, 0.18), transparent 22%),
    linear-gradient(180deg, #0b1020 0%, #121a30 52%, #0d1324 100%);
  color: var(--ink);
}

body {
  position: relative;
  overflow-x: hidden;
}

.ops-app {
  position: relative;
  isolation: isolate;
}

.ops-app__glow,
.ops-app__grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.ops-app__glow {
  z-index: -3;
  filter: blur(60px);
  opacity: 0.9;
}

.ops-app__glow--one {
  inset: auto auto 8% -10%;
  width: 36rem;
  height: 36rem;
  background: radial-gradient(circle, rgba(212, 165, 74, 0.32), transparent 62%);
}

.ops-app__glow--two {
  inset: -8% -12% auto auto;
  width: 42rem;
  height: 42rem;
  background: radial-gradient(circle, rgba(77, 110, 255, 0.22), transparent 62%);
}

.ops-app__grid {
  z-index: -2;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 92%);
}

.login-card,
.sidebar-card,
.surface-card,
.hero-panel,
.empty-state,
.login-copy,
.login-form {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(9, 14, 27, 0.7);
  box-shadow: var(--shadow);
}

.login-card {
  position: relative;
  overflow: hidden;
  gap: 24px;
  padding: 24px;
}

.login-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(212, 165, 74, 0.12), transparent 34%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 28%);
  pointer-events: none;
}

.login-copy,
.login-form {
  position: relative;
  z-index: 1;
}

.login-copy {
  min-height: 460px;
}

.eyebrow,
.pill,
.hero-chip {
  background: rgba(212, 165, 74, 0.12);
  color: #f7dca5;
  border: 1px solid rgba(212, 165, 74, 0.18);
}

.login-copy p,
.hero-panel p,
.empty-state p,
.sync-note,
.business-item small,
.brand-block p,
.branch-card p,
.team-card__identity small,
.booking-card__identity small,
.info-row span {
  color: rgba(226, 232, 240, 0.72);
}

.login-points li,
.stat-card,
.mini-stat,
.branch-card,
.team-card,
.booking-card,
.service-row,
.info-row,
.business-item {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
}

.field input,
.search-field input {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
}

.field input::placeholder,
.search-field input::placeholder {
  color: rgba(226, 232, 240, 0.4);
}

.primary-button {
  background: linear-gradient(135deg, #f0c26d 0%, #b88229 100%);
  color: #0f172a;
  box-shadow: 0 18px 34px rgba(212, 165, 74, 0.24);
}

.ghost-button,
.logout-button {
  background: rgba(255, 255, 255, 0.07);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.logout-button {
  background: linear-gradient(180deg, rgba(32, 41, 61, 0.95), rgba(17, 24, 39, 0.95));
}

.dashboard-shell {
  grid-template-columns: 380px minmax(0, 1fr);
}

.sidebar {
  background:
    linear-gradient(180deg, rgba(8, 13, 24, 0.96), rgba(15, 23, 42, 0.9));
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.brand-mark {
  background: linear-gradient(135deg, #f0c26d 0%, #8f5c17 100%);
  color: #0f172a;
  box-shadow: 0 16px 30px rgba(212, 165, 74, 0.22);
}

.stat-card strong,
.mini-stat strong,
.business-item strong,
.branch-card strong,
.team-card__identity strong,
.booking-card__identity strong,
.surface-card__head span:first-child,
.sidebar-card__head span:first-child {
  color: #f8fafc;
}

.content {
  position: relative;
  padding: 28px;
  gap: 22px;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(212, 165, 74, 0.16), transparent 26%),
    linear-gradient(135deg, rgba(44, 61, 106, 0.34), rgba(15, 23, 42, 0.88) 58%);
}

.hero-panel > * {
  position: relative;
  z-index: 1;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto -4% -30% auto;
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(212, 165, 74, 0.16), transparent 62%);
  pointer-events: none;
}

.hero-panel h2 {
  color: #ffffff;
}

.business-item {
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.business-item::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(240, 194, 109, 0), rgba(240, 194, 109, 0.94), rgba(240, 194, 109, 0));
  opacity: 0;
  transition: opacity 180ms ease;
}

.business-item:hover,
.business-item.is-active {
  transform: translateY(-1px);
  border-color: rgba(240, 194, 109, 0.32);
}

.business-item:hover::after,
.business-item.is-active::after {
  opacity: 1;
}

.business-item.is-active {
  background:
    linear-gradient(135deg, rgba(240, 194, 109, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.06);
}

.chip,
.tag {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: #dbe4f0;
}

.chip.is-success,
.tag.is-active {
  background: rgba(53, 179, 126, 0.14);
  color: #8ff2b8;
  border-color: rgba(53, 179, 126, 0.2);
}

.chip.is-danger,
.tag.is-inactive {
  background: rgba(240, 83, 83, 0.12);
  color: #ffb4b4;
  border-color: rgba(240, 83, 83, 0.18);
}

.toast {
  background: rgba(10, 14, 26, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 1120px) {
  .dashboard-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
}

.ghost-button--danger {
  color: #ffd0d0;
  border-color: rgba(240, 83, 83, 0.18);
  background: rgba(240, 83, 83, 0.08);
}

.hero-control-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  position: relative;
  z-index: 5;
  pointer-events: auto;
}

.hero-control-row .ghost-button {
  position: relative;
  z-index: 6;
  pointer-events: auto;
}

.section-copy {
  margin: 8px 0 0;
  color: rgba(226, 232, 240, 0.72);
  line-height: 1.6;
}

.surface-card__head--stack {
  align-items: flex-start;
}

.bookings-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.select-field select,
.search-field--compact input {
  width: 100%;
  min-width: 180px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  outline: none;
}

.select-field select:focus,
.search-field--compact input:focus {
  border-color: rgba(240, 194, 109, 0.42);
  box-shadow: 0 0 0 4px rgba(240, 194, 109, 0.1);
}

.activity-list {
  display: grid;
  gap: 10px;
  max-height: 240px;
  overflow: auto;
}

.activity-item {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 6px;
}

.activity-item strong {
  font-size: 14px;
  color: #f8fafc;
}

.activity-item p,
.activity-item small {
  margin: 0;
  color: rgba(226, 232, 240, 0.68);
}

.business-item.is-inactive {
  opacity: 0.72;
}

.business-item__status {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.booking-feed--global {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.booking-card__business {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.team-card__actions,
.branch-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.mini-button {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 700;
}

.modal-shell {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(6px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(9, 14, 27, 0.92);
  box-shadow: var(--shadow);
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.modal-head strong {
  font-family: "Sora", sans-serif;
  font-size: 22px;
}

.modal-form {
  display: grid;
  gap: 18px;
}

.modal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.modal-section {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-section h4 {
  margin: 0;
  font-size: 15px;
}

.toggle-row,
.inline-row,
.timeoff-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.toggle-row label,
.checkbox-list label,
.timeoff-row label {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: rgba(226, 232, 240, 0.86);
}

.checkbox-list {
  display: grid;
  gap: 10px;
}

.day-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 10px;
  align-items: center;
}

.time-pair {
  display: flex;
  gap: 8px;
  align-items: center;
}

.day-row input[type="time"],
.timeoff-row input[type="date"],
.timeoff-row input[type="time"],
.timeoff-row input[type="text"],
.modal-form input[type="text"],
.modal-form input[type="email"],
.modal-form input[type="tel"],
.modal-form select,
.modal-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  outline: none;
}

.modal-form textarea {
  min-height: 96px;
  resize: vertical;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

@media (max-width: 980px) {
  .booking-feed--global,
  .modal-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .hero-control-row,
  .bookings-toolbar,
  .day-row {
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .day-row {
    display: grid;
  }
}
