:root {
  --black: #050505;
  --ink: #f8f8f4;
  --muted: rgba(248, 248, 244, 0.68);
  --muted-strong: rgba(248, 248, 244, 0.82);
  --line: rgba(255, 255, 255, 0.13);
  --blue: #31a8ff;
  --orange: #ff6c2f;
  --green: #32c373;
  --yellow: #ffe16a;
  --purple: #8a70ff;
  --radius: 28px;
  --mono: "Space Mono", "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  --body: "Space Grotesk", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--black);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: var(--body);
  background:
    radial-gradient(circle at 18% 8%, rgba(49, 168, 255, 0.18), transparent 30rem),
    radial-gradient(circle at 92% 2%, rgba(255, 108, 47, 0.16), transparent 28rem),
    linear-gradient(135deg, #030303, #101010 48%, #020202);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.portal-root {
  min-height: 100vh;
}

body.portal-authenticated .login-screen {
  display: none !important;
}

body.portal-authenticated .portal-app {
  display: grid !important;
}

.login-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  position: relative;
}

.home-link {
  position: absolute;
  top: 28px;
  left: 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--mono);
  font-weight: 700;
}

.home-link img,
.sidebar-logo img {
  border-radius: 12px;
}

.login-card {
  width: min(940px, 100%);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
}

.login-copy {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 28px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 22%, rgba(50, 195, 115, 0.28), transparent 18rem),
    radial-gradient(circle at 18% 20%, rgba(255, 108, 47, 0.23), transparent 16rem),
    linear-gradient(150deg, rgba(255, 108, 47, 0.18), rgba(49, 168, 255, 0.16));
}

.login-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 46%),
    radial-gradient(circle at 82% 82%, rgba(255, 225, 106, 0.16), transparent 13rem);
  pointer-events: none;
}

.login-brand-lockup,
.login-copy-content {
  position: relative;
  z-index: 1;
}

.login-brand-lockup {
  width: min(64%, 300px);
  min-width: 210px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 16px;
  background:
    linear-gradient(135deg, #fffdf2, #eefef9 54%, #dcefff);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.login-brand-lockup img {
  display: block;
  width: 100%;
  height: auto;
}

.login-copy-content {
  max-width: 660px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.blue {
  color: var(--blue);
}

.login-copy h1,
.portal-header h1 {
  margin: 0;
  font-family: var(--mono);
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.login-copy h1 {
  max-width: 10ch;
  font-size: clamp(3rem, 5.2vw, 4.2rem);
  line-height: 1.08;
  overflow-wrap: normal;
  text-wrap: balance;
}

.login-title-tail {
  white-space: nowrap;
}

.login-copy p:last-child,
.portal-header p {
  max-width: 660px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.45;
}

.login-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 28px;
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.44);
  border: 1px solid var(--line);
}

.login-form label {
  display: grid;
  gap: 9px;
  color: var(--muted-strong);
  font-family: var(--mono);
  font-weight: 700;
}

.login-form input {
  width: 100%;
  min-height: 60px;
  padding: 0 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  outline: none;
}

.login-form input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(49, 168, 255, 0.16);
}

.portal-button {
  min-height: 52px;
  border: 0;
  border-radius: 16px;
  padding: 0 20px;
  color: var(--ink);
  font-family: var(--mono);
  font-weight: 700;
  transition: transform 150ms ease, filter 150ms ease, background 150ms ease;
}

.portal-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.portal-button:active {
  transform: translateY(1px);
}

.portal-button.primary {
  color: #031108;
  background: linear-gradient(135deg, var(--green), #76efaa);
}

.portal-button.ghost {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.1);
}

.form-status {
  min-height: 1.25rem;
  margin: 0;
  color: var(--yellow);
  font-family: var(--mono);
  font-size: 0.88rem;
}

.form-status.error {
  color: #ff8383;
}

.portal-app {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
}

.portal-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 28px 12px;
  background: rgba(255, 255, 255, 0.06);
  border-right: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.sidebar-logo {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 22px;
  color: var(--ink);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
}

.sidebar-nav {
  display: grid;
  gap: 10px;
  width: 100%;
}

.sidebar-nav button,
.sidebar-settings {
  width: 100%;
  min-height: 78px;
  display: grid;
  place-items: center;
  gap: 5px;
  padding: 8px;
  color: var(--muted);
  border: 0;
  border-radius: 18px;
  background: transparent;
  font-size: 0.78rem;
}

.sidebar-nav button span:first-child,
.sidebar-settings span:first-child {
  font-size: 1.55rem;
}

.sidebar-nav button.active,
.sidebar-settings.active {
  color: var(--blue);
  background: rgba(49, 168, 255, 0.12);
}

.sidebar-settings {
  margin-top: auto;
}

.portal-main-shell {
  min-width: 0;
  padding: clamp(22px, 4vw, 42px);
}

.portal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 26px;
}

.portal-header h1 {
  font-size: clamp(2.3rem, 5vw, 4.5rem);
}

.account-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.role-chip {
  white-space: nowrap;
  padding: 13px 16px;
  color: var(--muted-strong);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-family: var(--mono);
  font-weight: 700;
  font-size: 0.82rem;
}

.operations-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 24px;
  align-items: start;
}

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

.glass-tile {
  position: relative;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 26px 28px 28px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 25px;
  text-align: left;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    inset 0 -22px 40px rgba(0, 0, 0, 0.12),
    0 16px 36px rgba(0, 0, 0, 0.24);
}

.glass-tile::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.2), transparent 32%),
    linear-gradient(320deg, rgba(0, 0, 0, 0.18), transparent 44%);
  pointer-events: none;
}

.glass-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 86% 14%, rgba(255, 255, 255, 0.28), transparent 7.5rem);
  pointer-events: none;
}

.glass-tile[data-module="foodOrders"] {
  background: linear-gradient(135deg, #71c9ff, #2179f2);
}

.glass-tile[data-module="menu86"] {
  background: linear-gradient(135deg, #ffe36a, #c48a00);
}

.glass-tile[data-module="callLogs"] {
  background: linear-gradient(135deg, #ffbd72, #ff5f30);
}

.glass-tile[data-module="voicemail"] {
  background: linear-gradient(135deg, #92db80, #31a65d);
}

.glass-tile[data-module="reservations"] {
  background: linear-gradient(135deg, #a985ff, #6150f2);
}

.glass-tile[data-module="waitList"] {
  background: linear-gradient(135deg, #55ddca, #087d8d);
}

.glass-tile.locked {
  filter: grayscale(0.35) brightness(0.58);
}

.tile-meta {
  position: relative;
  z-index: 1;
  display: flex;
  max-width: calc(100% - 112px);
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--mono);
  font-weight: 700;
  font-size: 0.78rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.tile-icon {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 1;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -12px 22px rgba(0, 0, 0, 0.1),
    0 12px 24px rgba(0, 0, 0, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 2.75rem;
  line-height: 1;
  opacity: 0.92;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}

.glass-tile strong {
  position: relative;
  z-index: 1;
  font-family: var(--mono);
  font-size: clamp(1.75rem, 3.25vw, 2.7rem);
  line-height: 1.05;
  letter-spacing: 0;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.detail-panel,
.placeholder-panel {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.detail-panel {
  position: sticky;
  top: 26px;
}

.detail-panel h2,
.placeholder-panel h2 {
  margin: 0;
  font-family: var(--mono);
  font-size: clamp(1.7rem, 4vw, 2.5rem);
}

.detail-panel p,
.placeholder-panel p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.permission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 22px 0 0;
}

.permission-pill {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.22);
  font-family: var(--mono);
  font-weight: 700;
}

.permission-pill.on {
  color: #082713;
  background: var(--green);
}

.reservation-preview {
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #090909;
}

.reservation-preview-bar {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-weight: 700;
}

.reservation-timeline {
  min-height: 220px;
  padding: 18px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 100% 52px, 76px 100%;
}

.reservation-preview-empty {
  padding: 18px;
  color: var(--muted);
  line-height: 1.45;
}

.reservation-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.reservation-chip {
  min-height: 54px;
  padding: 10px 12px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, #34c759, #168235);
  font-weight: 700;
}

.reservation-chip.requested {
  background: linear-gradient(135deg, #ffb340, #a66b08);
}

.reservation-chip.declined {
  background: linear-gradient(135deg, #ff453a, #a9241f);
}

.reservation-chip.cancelled {
  background: linear-gradient(135deg, #6b7078, #3c4046);
}

.placeholder-panel {
  max-width: 940px;
}

.placeholder-panel ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.6;
}

body.portal-admin-page {
  background:
    radial-gradient(circle at 16% 0%, rgba(49, 168, 255, 0.1), transparent 24rem),
    radial-gradient(circle at 92% 6%, rgba(50, 195, 115, 0.1), transparent 28rem),
    #050505;
}

body.portal-admin-page .portal-main-shell {
  background: #050505;
}

.ios-form-page {
  width: min(900px, 100%);
  display: grid;
  gap: 18px;
  padding-bottom: 72px;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", sans-serif;
}

.admin-configure-page,
.admin-onboarding-page {
  max-width: 920px;
}

.admin-state-card,
.ios-disclosure {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.045));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 18px 40px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.admin-state-card {
  padding: 24px;
}

.admin-state-card h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 850;
  letter-spacing: 0;
}

.admin-state-card p:last-child {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.45;
}

.admin-state-card.error {
  border-color: rgba(255, 84, 84, 0.34);
  background: rgba(255, 84, 84, 0.1);
}

.ios-disclosure summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 18px;
  cursor: pointer;
  list-style: none;
}

.ios-disclosure summary::-webkit-details-marker,
.ios-nested-disclosure summary::-webkit-details-marker {
  display: none;
}

.ios-disclosure summary::after,
.ios-nested-disclosure summary::after {
  content: "⌄";
  color: rgba(255, 255, 255, 0.42);
  font-size: 18px;
  font-weight: 850;
  transform: rotate(-90deg);
  transition: transform 160ms ease;
}

.ios-disclosure[open] > summary::after,
.ios-nested-disclosure[open] > summary::after {
  transform: rotate(0deg);
}

.ios-module-label {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}

.ios-symbol {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 9px;
  color: #fff;
  background: linear-gradient(135deg, rgba(49, 168, 255, 0.92), rgba(50, 195, 115, 0.82));
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}

.ios-module-meta {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  font-weight: 750;
}

.ios-module-body {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ios-row {
  min-height: 54px;
  display: grid;
  grid-template-columns: minmax(180px, 0.75fr) minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 11px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.065);
}

.ios-row:first-child {
  border-top: 0;
}

.ios-row > span:first-child {
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 720;
}

.ios-row strong,
.ios-picker-value {
  min-width: 0;
  justify-self: end;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  font-weight: 650;
  text-align: right;
  overflow-wrap: anywhere;
}

.ios-row small {
  grid-column: 2;
  margin-top: -7px;
  justify-self: end;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  font-weight: 650;
  text-align: right;
}

.ios-picker-value {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
}

.ios-picker-value b {
  color: rgba(255, 255, 255, 0.34);
  font-size: 13px;
}

.ios-control-row input,
.ios-control-row select,
.ios-control-row textarea {
  width: 100%;
  min-height: 38px;
  justify-self: stretch;
  padding: 8px 11px;
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}

.ios-control-row select {
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.6) 50%) calc(100% - 16px) 16px / 7px 7px no-repeat,
    linear-gradient(135deg, rgba(255, 255, 255, 0.6) 50%, transparent 50%) calc(100% - 11px) 16px / 7px 7px no-repeat,
    rgba(255, 255, 255, 0.06);
  padding-right: 32px;
}

.ios-control-row textarea {
  min-height: 78px;
  resize: vertical;
}

.ios-toggle-control-row {
  cursor: default;
}

.ios-toggle-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.ios-switch {
  border: 0;
  width: 51px;
  height: 31px;
  justify-self: end;
  padding: 2px;
  border-radius: 999px;
  background: rgba(120, 120, 128, 0.36);
  cursor: pointer;
  transition: background 160ms ease;
}

.ios-switch i {
  width: 27px;
  height: 27px;
  display: block;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  transition: transform 160ms ease;
}

.ios-switch.on,
.ios-switch[aria-checked="true"] {
  background: #34c759;
}

.ios-toggle-control-row input[type="checkbox"]:checked + .ios-switch {
  background: #34c759;
}

.ios-switch.on i,
.ios-switch[aria-checked="true"] i {
  transform: translateX(20px);
}

.ios-toggle-control-row input[type="checkbox"]:checked + .ios-switch i {
  transform: translateX(20px);
}

.ios-switch:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

.ios-action-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 12px 18px 16px;
  padding: 0 16px;
  color: #fff;
  border: 0;
  border-radius: 13px;
  background: rgba(10, 132, 255, 0.82);
  font-size: 15px;
  font-weight: 750;
}

.ios-action-button:disabled {
  opacity: 0.54;
  cursor: default;
}

.ios-action-button.primary {
  background: rgba(10, 132, 255, 0.94);
}

.ios-save-status {
  margin: 10px 18px 0;
  padding: 11px 13px;
  border-radius: 13px;
  font-size: 13px;
  font-weight: 750;
}

.ios-save-status.ok {
  color: #9df6bf;
  background: rgba(52, 199, 89, 0.12);
}

.ios-save-status.error {
  color: #ff9b9b;
  background: rgba(255, 84, 84, 0.13);
}

.ios-button-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 4px 0 0;
}

.ios-choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 8px 18px 4px;
}

.ios-choice-pill {
  min-height: 36px;
  padding: 0 13px;
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 800;
}

.ios-choice-pill.selected {
  color: #fff;
  border-color: rgba(10, 132, 255, 0.72);
  background: rgba(10, 132, 255, 0.28);
}

.ios-button-grid .ios-action-button {
  margin: 0;
}

.ios-footnote,
.ios-status-text,
.ios-source-note {
  margin: 0;
  padding: 13px 18px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.4;
}

.ios-status-text.ok {
  color: #40d477;
}

.ios-source-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ios-day-list {
  display: grid;
}

.ios-day-row {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.065);
}

.ios-day-row strong {
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  font-weight: 760;
}

.ios-day-row span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  font-weight: 650;
  text-align: right;
}

.admin-hours-list {
  display: grid;
  gap: 10px;
  padding: 0 12px 4px;
}

.admin-hours-day {
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.18);
}

.admin-hours-day-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.admin-hours-day-head strong {
  color: #fff;
  font-size: 15px;
  font-weight: 820;
}

.admin-hours-day-head select,
.admin-hours-window select {
  min-height: 36px;
  padding: 0 28px 0 11px;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 10px;
  background:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.64) 50%) calc(100% - 14px) 15px / 6px 6px no-repeat,
    linear-gradient(135deg, rgba(255, 255, 255, 0.64) 50%, transparent 50%) calc(100% - 10px) 15px / 6px 6px no-repeat,
    rgba(255, 255, 255, 0.06);
  appearance: none;
}

.admin-hours-windows {
  display: grid;
  gap: 8px;
  margin-top: 11px;
}

.admin-hours-window {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.admin-hours-window span,
.admin-hours-closed {
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  font-weight: 700;
}

.admin-hours-closed {
  margin: 9px 0 0;
}

.admin-hour-icon-button {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #07170e;
  border: 0;
  border-radius: 999px;
  background: #34c759;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.admin-hour-icon-button.danger {
  color: #fff;
  background: rgba(255, 69, 58, 0.82);
}

.admin-hour-icon-button:disabled,
.admin-hours-day-head select:disabled,
.admin-hours-window select:disabled {
  opacity: 0.54;
  cursor: default;
}

.menu-knowledge-save-row {
  padding: 4px 18px 18px;
}

.menu-knowledge-save-row .ios-action-button {
  width: 100%;
  margin: 0;
}

.agent-visibility-button {
  position: relative;
  width: 42px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #9bd5ff;
  border: 1px solid rgba(100, 190, 255, 0.32);
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.18), transparent 58%),
    rgba(10, 132, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 8px 18px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  transition: transform 150ms ease, border-color 150ms ease, background 150ms ease, color 150ms ease;
}

.agent-visibility-button:hover:not(:disabled) {
  transform: translateY(-1px);
  border-color: rgba(135, 210, 255, 0.56);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.22), transparent 58%),
    rgba(10, 132, 255, 0.24);
}

.agent-visibility-button.hidden {
  color: rgba(255, 255, 255, 0.46);
  border-color: rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.12), transparent 58%),
    rgba(255, 255, 255, 0.06);
}

.agent-visibility-button:disabled {
  opacity: 0.52;
  cursor: default;
}

.visibility-eye {
  position: relative;
  width: 20px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 72% 18%;
  transform: rotate(45deg);
}

.visibility-eye::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 999px;
  background: currentColor;
}

.agent-visibility-button.hidden::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(-38deg);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.14);
}

.ios-nested-disclosure {
  position: relative;
  margin: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.ios-nested-disclosure summary {
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  cursor: pointer;
  list-style: none;
}

.ios-nested-disclosure summary span {
  min-width: 0;
  flex: 1;
  color: #fff;
  font-size: 15px;
  font-weight: 780;
  overflow-wrap: anywhere;
}

.ios-nested-disclosure summary em {
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-style: normal;
  font-weight: 760;
  white-space: nowrap;
}

.menu-category-disclosure > summary,
.menu-item-disclosure > summary {
  padding-right: 78px;
}

.menu-category-disclosure > .agent-visibility-button,
.menu-item-disclosure > .agent-visibility-button {
  position: absolute;
  top: 8px;
  right: 38px;
  z-index: 2;
}

.menu-item-disclosure {
  margin: 8px 10px;
  background: rgba(255, 255, 255, 0.035);
}

.ios-nested-body {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.menu-item-knowledge-detail {
  padding: 24px 18px 18px;
  background: rgba(255, 255, 255, 0.025);
}

.menu-item-copy-block {
  display: grid;
  gap: 12px;
  padding: 0 2px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-item-copy-block h3 {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 20px;
  font-weight: 620;
  line-height: 1.25;
}

.menu-modifier-muted,
.menu-modifier-hint {
  color: rgba(255, 255, 255, 0.48);
}

.menu-knowledge-field,
.menu-modifier-custom-value {
  display: grid;
  gap: 7px;
}

.menu-knowledge-field span,
.menu-modifier-custom-value span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-weight: 820;
  line-height: 1.35;
}

.menu-knowledge-field small {
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
}

.menu-knowledge-field input,
.menu-knowledge-field textarea,
.menu-modifier-input {
  width: 100%;
  min-width: 0;
  border: 0;
  border-radius: 0;
  outline: none;
  resize: vertical;
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  font: inherit;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.45;
}

.menu-knowledge-field textarea,
.menu-modifier-input:is(textarea) {
  min-height: 76px;
}

.menu-knowledge-field input::placeholder,
.menu-knowledge-field textarea::placeholder,
.menu-modifier-input::placeholder {
  color: rgba(255, 255, 255, 0.34);
}

.menu-knowledge-field input:focus,
.menu-knowledge-field textarea:focus,
.menu-modifier-input:focus {
  color: #fff;
}

.menu-modifier-empty {
  margin: 16px 2px 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 14px;
  font-weight: 650;
}

.menu-modifier-presentation-list {
  display: grid;
  gap: 28px;
  padding-top: 22px;
}

.menu-modifier-editor {
  display: grid;
  gap: 12px;
}

.menu-modifier-editor + .menu-modifier-editor {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-modifier-editor h4,
.menu-modifier-field h5,
.menu-modifier-examples h5 {
  margin: 0;
}

.menu-modifier-editor h4 {
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
  font-weight: 820;
  line-height: 1.3;
}

.menu-modifier-muted {
  margin: 0;
  font-size: 15px;
  font-weight: 570;
  line-height: 1.45;
}

.menu-modifier-field {
  display: grid;
  gap: 7px;
}

.menu-modifier-field h5,
.menu-modifier-examples h5 {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 820;
  line-height: 1.35;
}

.menu-modifier-value {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  font-weight: 500;
}

.menu-modifier-hint {
  margin: 0;
  font-size: 13px;
  font-weight: 620;
  line-height: 1.4;
}

.menu-modifier-options {
  display: grid;
  gap: 10px;
}

.menu-modifier-option-row {
  display: grid;
  grid-template-columns: minmax(96px, 0.42fr) minmax(140px, 1fr);
  gap: 14px;
  align-items: baseline;
}

.menu-modifier-option-row span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 15px;
  font-weight: 620;
}

.menu-modifier-input.compact {
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  font-weight: 520;
}

.menu-modifier-default-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.menu-modifier-default-row span {
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
  font-weight: 540;
}

.menu-modifier-default-row label {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.menu-modifier-default-row select {
  max-width: min(290px, 44vw);
  border: 0;
  outline: 0;
  appearance: none;
  background: transparent;
  color: #2da8ff;
  font: inherit;
  font-size: 16px;
  font-weight: 820;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
}

.menu-modifier-default-row b {
  color: #2da8ff;
  font-size: 13px;
  line-height: 1;
}

.menu-modifier-examples {
  display: grid;
  gap: 9px;
}

.menu-modifier-example {
  display: grid;
  gap: 3px;
}

.menu-modifier-example span,
.menu-modifier-custom-value span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-weight: 820;
}

.menu-modifier-example strong {
  font-size: 18px;
  font-weight: 560;
  line-height: 1.35;
}

.menu-modifier-example.ask strong {
  color: #40ec82;
}

.menu-modifier-example.confirm strong {
  color: #48a8ff;
}

.menu-modifier-example.readback strong {
  color: #ff8f55;
}

.menu-modifier-custom {
  border: 0;
}

.menu-modifier-custom summary {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
  font-weight: 820;
  cursor: pointer;
  list-style: none;
}

.menu-modifier-custom summary::-webkit-details-marker {
  display: none;
}

.menu-modifier-custom summary::after {
  content: "›";
  color: rgba(255, 255, 255, 0.85);
  font-size: 31px;
  font-weight: 300;
  line-height: 1;
  transition: transform 160ms ease;
}

.menu-modifier-custom[open] summary::after {
  transform: rotate(90deg);
}

.menu-modifier-custom > div {
  display: grid;
  gap: 11px;
  padding-top: 9px;
}

.menu-modifier-custom-value {
  display: grid;
  gap: 4px;
}

.ios-subgroup {
  padding: 12px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.065);
}

.ios-subgroup h4 {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.ios-mini-card,
.ios-list-card,
.ios-integration-row,
.ios-setup-row {
  display: grid;
  gap: 4px;
  margin: 8px 0;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
}

.ios-mini-card strong,
.ios-list-card strong,
.ios-integration-row strong,
.ios-setup-row strong {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.ios-mini-card span,
.ios-list-card span,
.ios-integration-row span,
.ios-setup-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
}

.ios-mini-card p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.ios-integration-row {
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  margin: 10px 18px;
}

.ios-integration-row em,
.ios-list-card em {
  color: #8fdcff;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.ios-integration-row button {
  min-height: 32px;
  padding: 0 11px;
  color: #fff;
  border: 0;
  border-radius: 999px;
  background: rgba(10, 132, 255, 0.62);
  font-size: 12px;
  font-weight: 800;
}

.ios-integration-row button:disabled {
  opacity: 0.54;
  cursor: default;
}

.ios-setup-row {
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: start;
  margin: 10px 18px;
}

.ios-setup-row > span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #07170e;
  background: #34c759;
  font-weight: 900;
}

.ios-setup-row > span.in-progress {
  color: #1f1600;
  background: #ffd60a;
}

.ios-list-card {
  margin: 10px 18px;
}

.ios-list-card.voice {
  position: relative;
  padding-right: 92px;
}

button.ios-list-card.voice {
  width: calc(100% - 36px);
  text-align: left;
  cursor: pointer;
}

.ios-list-card.voice.selected {
  border-color: rgba(52, 199, 89, 0.48);
  background: rgba(52, 199, 89, 0.11);
}

.ios-list-card.voice.disabled {
  opacity: 0.48;
}

.ios-list-card.voice em {
  position: absolute;
  top: 13px;
  right: 13px;
}

@media (max-width: 760px) {
  .ios-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .ios-row strong,
  .ios-picker-value,
  .ios-switch,
  .ios-row small {
    justify-self: start;
    text-align: left;
  }

  .ios-integration-row {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

body.portal-food-orders-page {
  background:
    radial-gradient(circle at 26% 0%, rgba(49, 168, 255, 0.1), transparent 26rem),
    radial-gradient(circle at 82% 18%, rgba(255, 108, 47, 0.08), transparent 30rem),
    #020202;
}

body.portal-food-orders-page .portal-main-shell {
  padding: 24px 24px 42px 28px;
  background: #000;
}

body.portal-food-orders-page .portal-header {
  display: none;
}

body.portal-food-orders-page .portal-content {
  min-height: calc(100vh - 46px);
}

.food-orders-page {
  min-height: calc(100vh - 46px);
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", sans-serif;
}

.food-orders-shell {
  width: min(760px, 100%);
  padding: 12px 2px 120px;
}

.food-orders-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.food-orders-top h1 {
  margin: 0;
  color: #fff;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.food-order-refresh {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 16px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 700;
}

.food-order-refresh:disabled {
  opacity: 0.55;
}

.food-order-metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 14px;
}

.food-order-metric {
  min-height: 82px;
  padding: 12px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  text-align: left;
  opacity: 0.58;
  transform: scale(1);
  box-shadow: none;
  transition: opacity 160ms ease, transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.food-order-metric.selected {
  opacity: 1;
  transform: scale(1.015);
  border-color: rgba(255, 255, 255, 0.44);
}

.food-order-metric strong {
  display: block;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.food-order-metric span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 700;
}

.food-order-metric.active {
  background: linear-gradient(135deg, rgba(50, 195, 115, 0.84), rgba(50, 195, 115, 0.44));
}

.food-order-metric.active.selected {
  box-shadow: 0 10px 24px rgba(50, 195, 115, 0.24);
}

.food-order-metric.attention {
  background: linear-gradient(135deg, rgba(255, 108, 47, 0.84), rgba(255, 108, 47, 0.44));
}

.food-order-metric.completed {
  background: linear-gradient(135deg, rgba(49, 168, 255, 0.84), rgba(49, 168, 255, 0.44));
}

.food-order-metric.cancelled {
  background: linear-gradient(135deg, rgba(255, 84, 84, 0.84), rgba(255, 84, 84, 0.44));
}

.food-order-metric.attention.selected {
  box-shadow: 0 10px 24px rgba(255, 108, 47, 0.28);
}

.food-order-metric.completed.selected {
  box-shadow: 0 10px 24px rgba(49, 168, 255, 0.24);
}

.food-order-metric.cancelled.selected {
  box-shadow: 0 10px 24px rgba(255, 84, 84, 0.24);
}

.food-order-status-message,
.food-order-empty {
  margin: 0 0 12px;
  padding: 18px;
  color: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.032));
  font-size: 15px;
  font-weight: 650;
}

.food-order-status-message {
  padding: 13px;
  font-size: 13px;
}

.food-order-status-message.error {
  color: #ff8585;
  border-color: rgba(255, 84, 84, 0.32);
  background: rgba(255, 84, 84, 0.12);
}

.food-order-group h2 {
  margin: 0 0 8px 2px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: 800;
}

.food-order-card {
  margin-bottom: 10px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.032));
}

.food-order-card.needs-attention {
  border-color: rgba(255, 108, 47, 0.42);
}

.food-order-card-main {
  width: 100%;
  display: block;
  padding: 0;
  color: inherit;
  border: 0;
  background: transparent;
  text-align: left;
}

.food-order-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.food-order-card-head strong {
  display: block;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.food-order-card-head span {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 700;
}

.food-order-card-actions {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}

.food-order-card-actions span {
  margin-top: 0;
}

.food-order-badge {
  display: inline-grid;
  place-items: center;
  height: 25px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.food-order-badge.active {
  color: #32c373;
  background: rgba(50, 195, 115, 0.16);
}

.food-order-badge.needsAttention {
  color: #ff9c5f;
  background: rgba(255, 108, 47, 0.16);
}

.food-order-badge.completed {
  color: #57b9ff;
  background: rgba(49, 168, 255, 0.16);
}

.food-order-badge.cancelled {
  color: #ff8585;
  background: rgba(255, 84, 84, 0.16);
}

.food-order-chevron {
  width: 18px;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  text-align: center;
}

.food-order-meta-row {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 700;
}

.food-order-preview {
  margin: 8px 0 0;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.food-order-warning {
  margin: 8px 0 0;
  color: #ff9c5f;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.food-order-expanded {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

.food-order-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.food-order-expanded h3 {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.food-order-line-item {
  position: relative;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.food-order-line-item > div {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.food-order-line-item span {
  min-width: 36px;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
}

.food-order-line-item strong {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}

.food-order-line-item em {
  position: absolute;
  top: 9px;
  right: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
}

.food-order-line-item ul {
  display: grid;
  gap: 3px;
  margin: 5px 0 0;
  padding: 0 0 0 46px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 650;
  list-style: none;
}

.food-order-muted {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
}

.food-order-detail-grid {
  display: grid;
  gap: 6px;
}

.food-order-detail-grid p {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.35;
}

.food-order-detail-grid span {
  color: rgba(255, 255, 255, 0.52);
  font-weight: 700;
}

.food-order-detail-grid strong {
  max-width: 68%;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 750;
  text-align: right;
  overflow-wrap: anywhere;
}

.food-order-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.food-order-move-panel {
  display: grid;
  gap: 8px;
}

.food-order-action {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  color: #fff;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.food-order-action.active {
  color: #dff8e8;
  background: rgba(50, 195, 115, 0.32);
}

.food-order-action.needsAttention {
  color: #ffe0c8;
  background: rgba(255, 108, 47, 0.32);
}

.food-order-action.completed {
  color: #d5efff;
  background: rgba(49, 168, 255, 0.32);
}

.food-order-action.danger {
  color: #ff8585;
  background: rgba(255, 84, 84, 0.14);
}

.food-order-action:disabled {
  opacity: 0.56;
}

body.portal-call-logs-page {
  background:
    radial-gradient(circle at 12% 6%, rgba(255, 108, 47, 0.18), transparent 24rem),
    radial-gradient(circle at 88% 12%, rgba(49, 168, 255, 0.12), transparent 26rem),
    #020202;
}

body.portal-call-logs-page .portal-main-shell {
  padding: 24px 24px 42px 28px;
  background: #000;
}

body.portal-call-logs-page .portal-header {
  display: none;
}

body.portal-call-logs-page .portal-content {
  min-height: calc(100vh - 46px);
}

.call-logs-page {
  min-height: calc(100vh - 46px);
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", sans-serif;
}

.call-logs-shell {
  width: min(1420px, 100%);
  display: grid;
  gap: 20px;
  padding: 12px 2px 90px;
}

.call-logs-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.call-logs-top h1 {
  margin: 0;
  color: #fff;
  font-size: 34px;
  font-weight: 850;
  letter-spacing: -0.025em;
}

.call-logs-top p {
  max-width: 680px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.42;
}

.call-log-refresh,
.call-log-back {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 16px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 760;
}

.call-log-refresh:disabled {
  opacity: 0.55;
}

.call-logs-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  gap: 18px;
  align-items: start;
}

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

.call-log-row {
  width: 100%;
  display: grid;
  gap: 10px;
  padding: 15px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.032));
  text-align: left;
}

.call-log-row.selected {
  border-color: rgba(255, 108, 47, 0.68);
  box-shadow: 0 0 0 2px rgba(255, 108, 47, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.call-log-row.live {
  border-color: rgba(52, 211, 108, 0.55);
  box-shadow: 0 0 0 2px rgba(52, 211, 108, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.call-log-row-main {
  display: grid;
  gap: 3px;
}

.call-log-row-main strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.12;
}

.call-log-row-main em {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-style: normal;
  font-weight: 730;
}

.call-log-row-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.call-log-metric {
  min-height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 850;
  line-height: 1;
}

.call-log-metric.blue {
  color: #80cdff;
  background: rgba(49, 168, 255, 0.14);
}

.call-log-metric.green,
.call-log-metric.mint {
  color: #80f2b1;
  background: rgba(50, 195, 115, 0.14);
}

.call-log-metric.orange {
  color: #ffb486;
  background: rgba(255, 108, 47, 0.16);
}

.call-log-row-foot {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  font-weight: 760;
}

.call-log-live-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #34d36c;
  box-shadow: 0 0 0 0 rgba(52, 211, 108, 0.55);
  animation: callLogPulse 1.6s ease-out infinite;
}

@keyframes callLogPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(52, 211, 108, 0.55);
  }

  70% {
    box-shadow: 0 0 0 9px rgba(52, 211, 108, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(52, 211, 108, 0);
  }
}

.call-log-detail-panel {
  min-width: 0;
}

.call-log-detail-card,
.call-log-no-selection,
.call-log-empty {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.065);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.call-log-detail-card {
  display: grid;
  gap: 18px;
  padding: 20px;
}

.call-log-detail-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.call-log-detail-head > div {
  min-width: 0;
}

.call-log-kicker {
  margin: 0 0 6px;
  color: #31a8ff;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.call-log-detail-head h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 850;
  letter-spacing: -0.025em;
  line-height: 0.98;
}

.call-log-detail-head span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-weight: 760;
}

.call-log-section {
  display: grid;
  gap: 10px;
}

.call-log-live-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(52, 211, 108, 0.24);
  border-radius: 18px;
  background: rgba(52, 211, 108, 0.11);
}

.call-log-live-banner strong {
  display: block;
  color: #86f7ae;
  font-size: 15px;
  font-weight: 850;
}

.call-log-live-banner p {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 720;
}

.call-log-section h3 {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.call-log-detail-grid {
  display: grid;
  gap: 7px;
}

.call-log-detail-grid p {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  padding: 0 0 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.35;
}

.call-log-detail-grid span {
  color: rgba(255, 255, 255, 0.52);
  font-weight: 740;
}

.call-log-detail-grid strong {
  max-width: 68%;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 760;
  text-align: right;
  overflow-wrap: anywhere;
}

.call-log-order-summary,
.call-log-muted {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 680;
  line-height: 1.45;
}

.call-log-order-items {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.call-log-order-items li {
  padding: 10px 12px;
  border-radius: 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  font-weight: 780;
}

.call-log-transcript {
  display: grid;
  gap: 10px;
}

.call-log-turn {
  display: grid;
  gap: 6px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.065);
}

.call-log-turn > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.call-log-turn strong {
  color: #8fd0ff;
  font-size: 12px;
  font-weight: 850;
}

.call-log-turn.agent strong {
  color: #b7a4ff;
}

.call-log-turn span,
.call-log-turn em {
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
  font-style: normal;
  font-weight: 720;
}

.call-log-turn p {
  margin: 0;
  color: #fff;
  font-size: 15px;
  line-height: 1.42;
}

.call-log-no-selection,
.call-log-empty {
  min-height: 260px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 26px;
  color: rgba(255, 255, 255, 0.62);
  text-align: center;
}

.call-log-no-selection span {
  font-size: 44px;
}

.call-log-no-selection h2 {
  margin: 0;
  color: #fff;
  font-size: 28px;
  font-weight: 850;
}

.call-log-no-selection p,
.call-log-empty {
  font-size: 15px;
  font-weight: 720;
  line-height: 1.45;
}

.call-log-status,
.call-log-empty.error {
  padding: 13px 15px;
  border-radius: 16px;
  color: #ff8585;
  background: rgba(255, 84, 84, 0.12);
  font-size: 13px;
  font-weight: 800;
  text-align: left;
}

body.portal-voicemail-page {
  background:
    radial-gradient(circle at 16% 6%, rgba(146, 219, 128, 0.16), transparent 24rem),
    radial-gradient(circle at 86% 18%, rgba(49, 168, 255, 0.1), transparent 26rem),
    #020202;
}

body.portal-voicemail-page .portal-main-shell {
  padding: 24px 24px 42px 28px;
  background: #000;
}

body.portal-voicemail-page .portal-header {
  display: none;
}

body.portal-voicemail-page .portal-content {
  min-height: calc(100vh - 46px);
}

.voicemail-page {
  min-height: calc(100vh - 46px);
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", sans-serif;
}

.voicemail-shell {
  width: min(860px, 100%);
  display: grid;
  gap: 18px;
  padding: 12px 2px 90px;
}

.voicemail-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.voicemail-top h1 {
  margin: 0;
  color: #fff;
  font-size: 34px;
  font-weight: 850;
  letter-spacing: -0.025em;
}

.voicemail-refresh {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 16px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 760;
}

.voicemail-refresh:disabled {
  opacity: 0.55;
}

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

.voicemail-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.034));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.voicemail-play {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  padding: 0;
  color: #31a8ff;
  border: 0;
  border-radius: 999px;
  background: rgba(49, 168, 255, 0.14);
  font-size: 25px;
  font-weight: 900;
}

.voicemail-row-body {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.voicemail-row-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}

.voicemail-row-head strong {
  min-width: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 850;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.voicemail-row-head span {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 760;
}

.voicemail-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.voicemail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 760;
}

.voicemail-empty {
  min-height: 220px;
  display: grid;
  place-items: center;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.065);
  font-size: 15px;
  font-weight: 720;
  text-align: center;
}

.voicemail-status {
  padding: 13px 15px;
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 800;
}

.voicemail-status.error {
  color: #ff8585;
  background: rgba(255, 84, 84, 0.12);
}

body.portal-wait-list-page {
  background:
    radial-gradient(circle at 18% 8%, rgba(86, 222, 206, 0.16), transparent 24rem),
    radial-gradient(circle at 82% 18%, rgba(146, 219, 128, 0.1), transparent 26rem),
    #020202;
}

body.portal-wait-list-page .portal-main-shell {
  padding: 24px 24px 42px 28px;
  background: #000;
}

body.portal-wait-list-page .portal-header {
  display: none;
}

body.portal-wait-list-page .portal-content {
  min-height: calc(100vh - 46px);
}

.wait-list-page {
  min-height: calc(100vh - 46px);
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", sans-serif;
}

.wait-list-shell {
  width: min(880px, 100%);
  display: grid;
  gap: 16px;
  padding: 12px 2px 90px;
}

.wait-list-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.wait-list-top h1 {
  margin: 0;
  color: #fff;
  font-size: 34px;
  font-weight: 850;
  letter-spacing: -0.025em;
}

.wait-list-top p {
  max-width: 620px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.42;
}

.wait-list-refresh {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 16px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 760;
}

.wait-list-refresh:disabled {
  opacity: 0.55;
}

.wait-list-card,
.wait-list-empty,
.wait-list-status {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.wait-list-card {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.wait-list-card h2 {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 850;
}

.wait-list-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.wait-list-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.wait-list-card-head > div {
  display: grid;
  justify-items: end;
  gap: 2px;
  text-align: right;
}

.wait-list-card-head strong {
  color: #ff9f0a;
  font-size: 12px;
  font-weight: 850;
}

.wait-list-card-head strong.fresh {
  color: #34c759;
}

.wait-list-card-head span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  font-weight: 720;
}

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

.wait-list-option {
  min-height: 74px;
  display: grid;
  place-items: center;
  gap: 4px;
  padding: 12px 9px;
  color: #fff;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.09);
  text-align: center;
}

.wait-list-option.compact {
  min-height: 52px;
}

.wait-list-option.selected {
  color: #020202;
  background: #34c759;
}

.wait-list-option:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.wait-list-option strong {
  color: inherit;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.15;
}

.wait-list-option span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
}

.wait-list-option.selected span {
  color: rgba(0, 0, 0, 0.68);
}

.wait-list-clear {
  min-height: 42px;
  padding: 0 14px;
  color: #ff8585;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 14px;
  font-weight: 800;
}

.wait-list-clear:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.wait-list-empty {
  min-height: 220px;
  display: grid;
  place-items: center;
  padding: 26px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  font-weight: 720;
  text-align: center;
}

.wait-list-status {
  padding: 13px 15px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
}

.wait-list-status.error {
  color: #ff8585;
  background: rgba(255, 84, 84, 0.12);
}

body.portal-menu86-page {
  background:
    radial-gradient(circle at 20% 4%, rgba(255, 108, 47, 0.16), transparent 24rem),
    radial-gradient(circle at 88% 16%, rgba(255, 225, 106, 0.08), transparent 24rem),
    #020202;
}

body.portal-menu86-page .portal-main-shell {
  padding: 24px 24px 42px 28px;
  background: #000;
}

body.portal-menu86-page .portal-header {
  display: none;
}

body.portal-menu86-page .portal-content {
  min-height: calc(100vh - 46px);
}

.menu86-page {
  min-height: calc(100vh - 46px);
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", sans-serif;
}

.menu86-shell {
  width: min(760px, 100%);
  display: grid;
  gap: 18px;
  padding: 12px 2px 120px;
}

.menu86-top,
.menu86-section-head,
.menu86-outage-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.menu86-top h1 {
  margin: 0;
  color: #fff;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.menu86-refresh {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 16px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 700;
}

.menu86-refresh:disabled {
  opacity: 0.55;
}

.menu86-active,
.menu86-editor {
  display: grid;
  gap: 12px;
}

.menu86-section-head h2 {
  margin: 0;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
}

.menu86-section-head span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 850;
}

.menu86-section-head span.write {
  color: #34c759;
}

.menu86-empty,
.menu86-editor {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
}

.menu86-empty {
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  font-weight: 700;
}

.menu86-outage-card {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(107, 31, 26, 0.98), rgba(242, 88, 40, 0.72));
}

.menu86-outage-head strong {
  color: #fff;
  font-size: 17px;
  font-weight: 800;
}

.menu86-outage-head span {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  color: #111;
  border-radius: 999px;
  background: #ffe16a;
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
}

.menu86-outage-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.menu86-outage-card .menu86-outage-items {
  color: rgba(255, 255, 255, 0.64);
}

.menu86-outage-note {
  padding-top: 3px;
  color: rgba(255, 255, 255, 0.78) !important;
}

.menu86-clear {
  justify-self: start;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  color: #08180f;
  border: 0;
  border-radius: 999px;
  background: #34c759;
  font-size: 12px;
  font-weight: 850;
}

.menu86-mode-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.menu86-mode-switch button {
  min-height: 44px;
  color: #fff;
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-size: 15px;
  font-weight: 750;
}

.menu86-mode-switch button.active {
  background: rgba(255, 255, 255, 0.26);
}

.menu86-label {
  display: grid;
  gap: 8px;
}

.menu86-label span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.menu86-label input,
.menu86-label select,
.menu86-label textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  color: #fff;
  border: 0;
  border-radius: 14px;
  outline: none;
  background: rgba(255, 255, 255, 0.1);
}

.menu86-label textarea {
  min-height: 94px;
  padding-top: 13px;
  resize: vertical;
}

.menu86-label input:focus,
.menu86-label select:focus,
.menu86-label textarea:focus {
  box-shadow: 0 0 0 3px rgba(255, 225, 106, 0.25);
}

.menu86-menu-picker {
  display: grid;
  gap: 8px;
}

.menu86-menu-picker p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 700;
}

.menu86-menu-row {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  color: #fff;
  border: 0;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.22);
  text-align: left;
}

.menu86-menu-row > span:first-child {
  color: rgba(255, 255, 255, 0.58);
  font-size: 18px;
}

.menu86-menu-row.selected > span:first-child {
  color: #34c759;
}

.menu86-menu-row strong,
.menu86-menu-row em {
  display: block;
}

.menu86-menu-row strong {
  font-size: 14px;
  font-weight: 850;
}

.menu86-menu-row em {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.menu86-affected {
  display: grid;
  gap: 8px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.24);
}

.menu86-affected h3 {
  margin: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 850;
}

.menu86-affected p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.4;
}

.menu86-affected-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 4px 0;
}

.menu86-affected-row strong,
.menu86-affected-row em {
  display: block;
}

.menu86-affected-row strong {
  color: #fff;
  font-size: 12px;
  font-weight: 850;
}

.menu86-affected-row em {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
}

.menu86-affected-row b {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.menu86-more {
  color: #ffe16a !important;
  font-weight: 850 !important;
}

.menu86-submit {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111;
  border: 0;
  border-radius: 16px;
  background: #ffe16a;
  font-size: 17px;
  font-weight: 850;
  line-height: 1;
}

.menu86-submit:disabled,
.menu86-clear:disabled {
  opacity: 0.48;
}

.menu86-error {
  padding: 12px;
  color: #ff6868;
  border-radius: 14px;
  background: rgba(255, 69, 58, 0.12);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
}

body.portal-reservations-page {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.055), transparent 26rem),
    radial-gradient(circle at 78% 22%, rgba(49, 168, 255, 0.08), transparent 28rem),
    #020202;
}

body.portal-reservations-page .portal-main-shell {
  padding: 24px 24px 22px 28px;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.035), transparent 42rem),
    #030303;
}

body.portal-reservations-page .portal-header {
  display: none;
}

body.portal-reservations-page .portal-content {
  min-height: calc(100vh - 46px);
}

.reservation-book {
  width: 100%;
  min-height: calc(100vh - 46px);
  overflow-x: auto;
  color: #f7f7f5;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", sans-serif;
}

.reservation-workspace {
  width: 100%;
  min-width: 1360px;
}

.reservation-book-top,
.reservation-controls-row,
.reservation-top-actions,
.reservation-date-controls,
.reservation-view-switch,
.reservation-bottom-row {
  display: flex;
  align-items: center;
}

.reservation-book-top {
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 27px;
}

.reservation-book h1 {
  margin: 0;
  color: #ffffff;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.reservation-top-actions {
  gap: 10px;
}

.reservation-action,
.reservation-view-switch button,
.date-step,
.date-pill,
.today-pill {
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9px;
  color: #f6f6f4;
  background: rgba(255, 255, 255, 0.055);
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
}

.reservation-action:disabled,
.reservation-view-switch button:disabled,
.date-step:disabled,
.date-pill:disabled,
.today-pill:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.reservation-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
}

.reservation-action.blue {
  min-width: 178px;
  border-color: rgba(36, 105, 230, 0.85);
  background: #1f6de9;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.reservation-action.dark {
  min-width: 132px;
  background: rgba(255, 255, 255, 0.045);
}

.reservation-action.green {
  min-width: 120px;
  border-color: rgba(47, 183, 100, 0.8);
  background: #22924c;
}

.reservation-action.danger {
  min-width: 120px;
  border-color: rgba(255, 67, 56, 0.8);
  background: #b82f28;
}

.reservation-controls-row {
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.reservation-view-switch {
  overflow: hidden;
  min-width: 348px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.035);
}

.reservation-view-switch button {
  min-width: 115px;
  min-height: 46px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  background: transparent;
}

.reservation-view-switch button:last-child {
  border-right: 0;
}

.reservation-view-switch button.active,
.today-pill {
  color: #1682ff;
  border-color: #0d6bff;
  background: rgba(13, 107, 255, 0.12);
}

.reservation-date-controls {
  gap: 7px;
}

.date-step {
  width: 44px;
  padding-bottom: 4px;
  font-size: 34px;
  line-height: 1;
}

.date-pill {
  min-width: 305px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 15px;
}

.today-pill {
  min-width: 84px;
}

.reservation-service-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -4px 0 16px;
}

.reservation-service-switch button {
  min-height: 42px;
  padding: 6px 14px;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  font-size: 14px;
  font-weight: 700;
}

.reservation-service-switch button span {
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

.reservation-service-switch button.active {
  color: #ffffff;
  border-color: #0d6bff;
  background: rgba(13, 107, 255, 0.18);
}

.reservation-book-status {
  margin-bottom: 14px;
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.055);
  font-size: 15px;
  font-weight: 600;
}

.reservation-book-status.error {
  color: #ff8585;
  border-color: rgba(255, 67, 56, 0.42);
  background: rgba(255, 67, 56, 0.09);
}

.legend-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
}

.legend-dot.confirmed {
  background: #34c759;
}

.legend-dot.requested {
  background: #ff9f0a;
}

.legend-dot.declined {
  background: #ff453a;
}

.legend-dot.cancelled {
  background: #8e8e93;
}

.legend-dot.load-light {
  background: linear-gradient(180deg, #34c759, #0c6d29);
}

.legend-dot.load-steady {
  background: linear-gradient(180deg, #ffcc00, #9d7000);
}

.legend-dot.load-heavy {
  background: linear-gradient(180deg, #ff9f0a, #ad5b02);
}

.legend-dot.load-full {
  background: linear-gradient(180deg, #ff453a, #96171c);
}

.reservation-timeline-card {
  --timeline-label-width: 118px;
  --timeline-row-height: 78px;
  --timeline-slot-count: 21;
  --timeline-row-count: 6;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background:
    radial-gradient(circle at 58% 38%, rgba(255, 255, 255, 0.045), transparent 36rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 40px rgba(0, 0, 0, 0.24);
}

.reservation-head-row {
  display: grid;
  grid-template-columns: var(--timeline-label-width) minmax(0, 1fr);
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}

.reservation-label-cell {
  display: flex;
  align-items: center;
  padding-left: 13px;
  color: rgba(255, 255, 255, 0.74);
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 14px;
}

.time-row {
  height: 62px;
}

.capacity-row {
  height: 38px;
}

.reservation-slot-head,
.reservation-capacity-cells {
  display: grid;
  grid-template-columns: repeat(var(--timeline-slot-count), minmax(0, 1fr));
}

.reservation-slot-head span,
.reservation-capacity-cells span {
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.055);
  color: #f4f4f2;
}

.reservation-slot-head span:last-child,
.reservation-capacity-cells span:last-child {
  border-right: 0;
}

.reservation-slot-head strong {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.08;
}

.reservation-slot-head em {
  margin-top: -8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-style: normal;
  line-height: 1;
}

.reservation-capacity-cells span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
}

.parties-row .reservation-label-cell {
  color: #f7f7f5;
}

.reservation-grid-area {
  position: relative;
  height: calc(var(--timeline-row-count) * var(--timeline-row-height) + 28px);
  background-image:
    repeating-linear-gradient(
      to bottom,
      transparent 0,
      transparent calc(var(--timeline-row-height) - 1px),
      rgba(255, 255, 255, 0.075) calc(var(--timeline-row-height) - 1px),
      rgba(255, 255, 255, 0.075) var(--timeline-row-height)
    ),
    repeating-linear-gradient(
      to right,
      transparent 0,
      transparent calc((100% - var(--timeline-label-width)) / var(--timeline-slot-count) - 1px),
      rgba(255, 255, 255, 0.055) calc((100% - var(--timeline-label-width)) / var(--timeline-slot-count) - 1px),
      rgba(255, 255, 255, 0.055) calc((100% - var(--timeline-label-width)) / var(--timeline-slot-count))
    );
  background-position: 0 0, var(--timeline-label-width) 0;
  background-size: 100% var(--timeline-row-height), calc(100% - var(--timeline-label-width)) 100%;
}

.reservation-grid-area::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--timeline-label-width);
  width: 1px;
  background: rgba(255, 255, 255, 0.07);
}

.reservation-now-line {
  position: absolute;
  z-index: 4;
  top: -160px;
  bottom: 0;
  left: calc(var(--timeline-label-width) + ((100% - var(--timeline-label-width)) / var(--timeline-slot-count)) * var(--now));
  width: 2px;
  background: #1679ff;
  box-shadow: 0 0 0 1px rgba(22, 121, 255, 0.18);
}

.reservation-now-line::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 9px;
  height: 9px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #1679ff;
}

.reservation-now-line span {
  position: absolute;
  top: -23px;
  left: 50%;
  transform: translateX(-50%);
  padding: 2px 7px 3px;
  color: #cfe4ff;
  background: rgba(22, 121, 255, 0.58);
  border-radius: 5px;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
}

.reservation-event {
  position: absolute;
  z-index: 2;
  left: calc(var(--timeline-label-width) + ((100% - var(--timeline-label-width)) / var(--timeline-slot-count)) * var(--start));
  top: calc(16px + var(--row) * var(--timeline-row-height));
  width: calc(((100% - var(--timeline-label-width)) / var(--timeline-slot-count)) * var(--span) - 7px);
  min-width: 90px;
  min-height: 58px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 9px 14px;
  overflow: visible;
  color: #ffffff;
  border: 0;
  border-radius: 7px;
  text-align: left;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 9px 18px rgba(0, 0, 0, 0.28);
}

.reservation-event strong {
  overflow: visible;
  font-size: var(--reservation-name-size, 16px);
  font-weight: 700;
  line-height: 1.04;
  overflow-wrap: anywhere;
  white-space: normal;
}

.reservation-event span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  line-height: 1;
}

.reservation-event i {
  font-style: normal;
  font-size: 11px;
}

.reservation-event.has-arrival-notes {
  outline: 2px solid rgba(255, 255, 255, 0.28);
  outline-offset: 0;
}

.reservation-event-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 1px;
  font-style: normal;
}

.reservation-event-flags b {
  min-height: 17px;
  display: inline-flex;
  align-items: center;
  padding: 0 6px;
  color: #101010;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}

.reservation-event.confirmed {
  background: linear-gradient(180deg, rgba(52, 199, 89, 0.92), rgba(20, 112, 45, 0.96));
}

.reservation-event.requested {
  background: linear-gradient(180deg, rgba(255, 159, 10, 0.92), rgba(140, 91, 5, 0.96));
}

.reservation-event.declined {
  background: linear-gradient(180deg, rgba(255, 69, 58, 0.94), rgba(156, 36, 31, 0.96));
}

.reservation-event.load-light {
  background: linear-gradient(180deg, rgba(52, 199, 89, 0.94), rgba(12, 109, 41, 0.98));
}

.reservation-event.load-steady {
  background: linear-gradient(180deg, rgba(255, 204, 0, 0.9), rgba(157, 112, 0, 0.96));
}

.reservation-event.load-heavy {
  background: linear-gradient(180deg, rgba(255, 159, 10, 0.95), rgba(173, 91, 2, 0.98));
}

.reservation-event.load-full {
  background: linear-gradient(180deg, rgba(255, 69, 58, 0.96), rgba(150, 23, 28, 0.98));
}

.reservation-event.state-checked_in strong {
  color: #c9e8ff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.38);
}

.reservation-event.state-checked_in span {
  width: fit-content;
  padding: 3px 7px;
  color: #dff2ff;
  background: rgba(0, 122, 255, 0.48);
  border-radius: 999px;
}

.reservation-event.state-no_show strong {
  color: #eadcff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.38);
}

.reservation-event.state-no_show span {
  width: fit-content;
  padding: 3px 7px;
  color: #f1e7ff;
  background: rgba(175, 82, 222, 0.48);
  border-radius: 999px;
}

.reservation-event.cancelled {
  border: 1px solid rgba(142, 142, 147, 0.72);
  background:
    repeating-linear-gradient(
      135deg,
      rgba(142, 142, 147, 0.22) 0,
      rgba(142, 142, 147, 0.22) 12px,
      transparent 12px,
      transparent 25px
    ),
    linear-gradient(180deg, rgba(82, 86, 94, 0.9), rgba(42, 44, 49, 0.9));
}

.reservation-event:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 2px;
}

.reservation-calendar-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 12%, rgba(49, 168, 255, 0.08), transparent 28rem),
    rgba(255, 255, 255, 0.04);
}

.reservation-calendar-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.reservation-calendar-header h2 {
  min-width: 280px;
  margin: 0;
  color: #ffffff;
  font-size: 23px;
  text-align: center;
}

.reservation-calendar-weekdays,
.reservation-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.reservation-calendar-weekdays {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.reservation-calendar-weekdays span {
  padding: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.reservation-calendar-day {
  min-height: 118px;
  display: grid;
  align-content: start;
  gap: 7px;
  padding: 12px;
  color: #ffffff;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.025);
  text-align: left;
}

.reservation-calendar-day:nth-child(7n) {
  border-right: 0;
}

.reservation-calendar-day.outside {
  color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.012);
}

.reservation-calendar-day.closed {
  opacity: 0.62;
}

.reservation-calendar-day.selected {
  box-shadow: inset 0 0 0 2px #1679ff;
  background: rgba(22, 121, 255, 0.15);
}

.reservation-calendar-day .day-number {
  font-size: 18px;
  font-weight: 800;
}

.reservation-calendar-day strong {
  font-size: 15px;
}

.reservation-calendar-day em {
  min-height: 18px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-style: normal;
}

.calendar-dots {
  display: flex;
  gap: 5px;
  margin-top: auto;
}

.reservation-modal-backdrop {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(12px);
}

.reservation-modal {
  width: min(760px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  overflow: auto;
  padding: 24px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 22px;
  background:
    radial-gradient(circle at 90% 10%, rgba(49, 168, 255, 0.14), transparent 22rem),
    #080808;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.reservation-modal-head,
.reservation-modal-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.reservation-modal-head {
  margin-bottom: 22px;
}

.reservation-modal h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.05;
}

.reservation-modal-close {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 28px;
  line-height: 1;
}

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

.reservation-form-grid label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 700;
}

.reservation-form-grid label.wide {
  grid-column: 1 / -1;
}

.reservation-form-grid input,
.reservation-form-grid select,
.reservation-form-grid textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  outline: none;
}

.reservation-form-grid textarea {
  resize: vertical;
}

.reservation-form-grid input:focus,
.reservation-form-grid select:focus,
.reservation-form-grid textarea:focus {
  border-color: #1679ff;
  box-shadow: 0 0 0 4px rgba(22, 121, 255, 0.16);
}

.reservation-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.reservation-detail-grid p,
.reservation-note-box {
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
}

.reservation-detail-grid span,
.reservation-note-box span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.reservation-detail-grid strong {
  color: #ffffff;
  font-size: 17px;
}

.reservation-note-box {
  margin-bottom: 18px;
}

.reservation-note-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.5;
}

.reservation-note-box.large p {
  font-size: 20px;
}

.reservation-note-box.arrival {
  border-color: rgba(255, 225, 106, 0.4);
  background:
    linear-gradient(180deg, rgba(255, 225, 106, 0.12), rgba(255, 255, 255, 0.055));
}

.reservation-note-box.arrival span {
  color: #ffe16a;
}

.reservation-modal-error {
  margin: 16px 0 0;
  padding: 12px 14px;
  color: #ff8d8d;
  border: 1px solid rgba(255, 67, 56, 0.35);
  border-radius: 12px;
  background: rgba(255, 67, 56, 0.1);
  font-weight: 700;
}

.reservation-modal-actions {
  justify-content: flex-end;
  margin-top: 20px;
  flex-wrap: wrap;
}

.reservation-bottom-row {
  align-items: stretch;
  gap: 12px;
  margin-top: 28px;
}

.reservation-night-card,
.reservation-hour-card,
.reservation-legend-card {
  min-height: 142px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background:
    radial-gradient(circle at 32% 0%, rgba(255, 255, 255, 0.06), transparent 15rem),
    rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.reservation-night-card {
  width: 312px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
}

.reservation-night-card h2,
.reservation-legend-card h2 {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  font-weight: 500;
}

.reservation-night-card strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.reservation-night-card span,
.reservation-legend-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
}

.reservation-progress {
  --reservation-ring-size: 76px;
  --reservation-ring-inset: calc((100% - var(--reservation-ring-size)) / 2);
  position: relative;
  width: 92px;
  display: grid;
  justify-items: center;
}

.reservation-progress svg {
  width: var(--reservation-ring-size);
  height: var(--reservation-ring-size);
  transform: rotate(-90deg);
}

.reservation-progress circle {
  fill: none;
  stroke: rgba(255, 255, 255, 0.18);
  stroke-width: 8;
}

.reservation-progress circle.progress {
  stroke: #34c759;
  stroke-linecap: round;
  stroke-dasharray: 220;
  stroke-dashoffset: var(--reservation-progress-offset, 220);
}

.reservation-progress b {
  position: absolute;
  top: 0;
  left: var(--reservation-ring-inset);
  width: var(--reservation-ring-size);
  height: var(--reservation-ring-size);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: none;
  color: #ffffff;
  font-size: 16px;
  text-align: center;
}

.reservation-progress span {
  width: 120px;
  margin-top: -3px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  text-align: center;
}

.reservation-hour-card {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
  gap: 0;
  padding: 22px 26px 17px;
}

.reservation-hour-item {
  display: grid;
  gap: 10px;
  padding: 0 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.11);
}

.reservation-hour-item:last-child {
  border-right: 0;
}

.reservation-hour-item span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
}

.reservation-hour-item strong {
  color: #ffffff;
  font-size: 19px;
  font-weight: 700;
}

.reservation-hour-item em {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-style: normal;
  text-align: center;
}

.reservation-mini-bar {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.reservation-mini-bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
}

.reservation-mini-bar.green i {
  background: #34c759;
}

.reservation-mini-bar.yellow i {
  background: #a3c72e;
}

.reservation-mini-bar.orange i {
  background: #ff9f0a;
}

.reservation-mini-bar.red i {
  background: #ff453a;
}

.reservation-mini-bar.gray i {
  background: #8e8e93;
}

.reservation-legend-card {
  width: 254px;
  padding: 22px 24px;
}

.reservation-legend-card h2 {
  margin-bottom: 16px;
  color: #ffffff;
  font-weight: 700;
}

.reservation-legend-card p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-size: 16px;
}

.reservation-load-legend-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 14px;
  row-gap: 11px;
}

.reservation-load-legend-item .legend-dot {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
}

.reservation-load-legend-item span {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.reservation-load-legend-item strong {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
}

.reservation-load-legend-item em {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-style: normal;
  font-weight: 650;
  line-height: 1.1;
}

.reservation-timezone {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  text-align: center;
}

@media (max-width: 980px) {
  .login-card,
  .operations-layout {
    grid-template-columns: 1fr;
  }

  .detail-panel {
    position: static;
  }

  .reservation-workspace {
    min-width: 1180px;
  }
}

@media (max-width: 760px) {
  .portal-app {
    grid-template-columns: 1fr;
  }

  .portal-sidebar {
    position: sticky;
    z-index: 3;
    top: 0;
    height: auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    padding: 10px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .sidebar-nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
  }

  .sidebar-nav button,
  .sidebar-settings {
    min-height: 58px;
    font-size: 0;
  }

  .sidebar-nav button span:first-child,
  .sidebar-settings span:first-child {
    font-size: 1.35rem;
  }

  .portal-main-shell {
    padding: 20px 16px 34px;
  }

  .portal-header {
    display: grid;
  }

  .account-actions {
    justify-content: space-between;
  }

  .operations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    width: min(100%, 430px);
    margin: 0 auto;
  }

  .glass-tile {
    aspect-ratio: 1.45 / 1;
    min-height: 122px;
    padding: 17px;
    border-radius: 20px;
  }

  .glass-tile[data-module="foodOrders"],
  .glass-tile[data-module="menu86"] {
    background: linear-gradient(135deg, #ff8238, #d84b1f);
  }

  .glass-tile[data-module="callLogs"],
  .glass-tile[data-module="voicemail"] {
    background: linear-gradient(135deg, #58d7c4, #0b86a7);
  }

  .glass-tile[data-module="reservations"],
  .glass-tile[data-module="waitList"] {
    background: linear-gradient(135deg, #a578ff, #6150f2);
  }

  .glass-tile strong {
    font-size: clamp(1.15rem, 5vw, 1.55rem);
  }

  .tile-icon {
    top: 12px;
    right: 12px;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    font-size: 2rem;
  }

  .tile-meta {
    max-width: calc(100% - 66px);
    font-size: 0.64rem;
  }

  .login-screen {
    padding: 92px 18px 22px;
  }

  .login-card {
    padding: 12px;
  }

  .login-copy {
    min-height: 340px;
    gap: 22px;
    padding: 22px;
  }

  .login-brand-lockup {
    width: min(72%, 250px);
    min-width: 190px;
    padding: 9px 11px;
    border-radius: 14px;
  }

  .login-form {
    padding: 18px;
  }

  body.portal-reservations-page .portal-main-shell {
    padding: 18px 12px 26px;
  }

  body.portal-food-orders-page .portal-main-shell {
    padding: 18px 16px 34px;
  }

  body.portal-call-logs-page .portal-main-shell {
    padding: 18px 16px 34px;
  }

  body.portal-voicemail-page .portal-main-shell {
    padding: 18px 16px 34px;
  }

  body.portal-wait-list-page .portal-main-shell {
    padding: 18px 16px 34px;
  }

  body.portal-menu86-page .portal-main-shell {
    padding: 18px 16px 34px;
  }

  .food-orders-shell,
  .call-logs-shell,
  .voicemail-shell,
  .wait-list-shell {
    width: 100%;
    padding-top: 10px;
  }

  .call-logs-top {
    display: grid;
  }

  .call-logs-top h1 {
    font-size: 31px;
  }

  .call-logs-layout {
    grid-template-columns: 1fr;
  }

  .call-logs-page:not(.detail-open) .call-log-detail-panel {
    display: none;
  }

  .call-logs-page.detail-open .call-logs-top,
  .call-logs-page.detail-open .call-log-list {
    display: none;
  }

  .call-logs-page.detail-open .call-logs-shell {
    padding-top: 0;
  }

  .call-log-detail-head {
    display: grid;
  }

  .call-log-back {
    justify-self: start;
  }

  .call-log-detail-grid p {
    display: grid;
    gap: 4px;
  }

  .call-log-detail-grid strong {
    max-width: none;
    text-align: left;
  }

  .voicemail-top {
    display: grid;
  }

  .voicemail-top h1 {
    font-size: 31px;
  }

  .voicemail-row {
    align-items: flex-start;
    padding: 14px;
  }

  .voicemail-row-head {
    display: grid;
    gap: 3px;
  }

  .voicemail-row-head strong {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .wait-list-top {
    display: grid;
  }

  .wait-list-top h1 {
    font-size: 31px;
  }

  .wait-list-grid {
    grid-template-columns: 1fr;
  }

  .wait-list-card-head {
    display: grid;
  }

  .wait-list-card-head > div {
    justify-items: start;
    text-align: left;
  }

  .menu86-shell {
    width: 100%;
    padding-top: 10px;
  }

  .reservation-book {
    min-height: auto;
    padding-bottom: 8px;
  }

  .reservation-workspace {
    min-width: 1040px;
  }

  .reservation-book h1 {
    font-size: 31px;
  }

  .reservation-bottom-row {
    align-items: stretch;
  }

  .reservation-form-grid,
  .reservation-detail-grid {
    grid-template-columns: 1fr;
  }

  .reservation-modal {
    padding: 18px;
  }

  .reservation-modal h2 {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .permission-grid {
    grid-template-columns: 1fr;
  }

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

  .glass-tile {
    min-height: 112px;
    padding: 13px;
    border-radius: 18px;
  }

  .glass-tile strong {
    font-size: clamp(1rem, 4.8vw, 1.35rem);
  }

  .portal-header h1 {
    overflow-wrap: anywhere;
  }
}
