

.search-field-center-placeholder {
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.search-field-center-placeholder > span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}




.search-field--prominent {
  --search-field-surface: rgba(118, 118, 128, 0.12);
  --search-field-surface-focus: rgba(118, 118, 128, 0.18);
  --search-field-action-hover: rgba(60, 60, 67, 0.09);
  --search-field-action-active: rgba(60, 60, 67, 0.14);
  position: relative;
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  height: 56px;
  box-sizing: border-box;
  padding: 0 6px 0 16px;
  border: 0;
  border-radius: 999px;
  background: var(--search-field-surface);
  box-shadow: none;
  -webkit-backdrop-filter: blur(16px) saturate(1.12);
  backdrop-filter: blur(16px) saturate(1.12);
  transition: background 160ms ease;
}

.search-field--prominent:focus-within {
  background: var(--search-field-surface-focus);
}

.search-field-leading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin-inline-end: 10px;
  color: rgba(60, 60, 67, 0.66);
  color: var(--sub, rgba(60, 60, 67, 0.66));
  pointer-events: none;
}

.search-field-leading > :is(.mdi, .dp-icon) {
  display: block;
  width: 20px;
  height: 20px;
  font-size: 20px;
  line-height: 1;
}

.search-field-control-slot {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  align-self: stretch;
  min-width: 0;
}

.search-field--prominent .search-field-control {
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  height: 100%;
  box-sizing: border-box;
  padding: 0;
  border: 0;
  border-radius: 0;
  outline: 0;
  background: transparent;
  box-shadow: none;
  color: #1c1c1e;
  color: var(--fg, #1c1c1e);
  font: 500 16px/1.2 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  text-align: start;
  caret-color: #dcaa2e;
  caret-color: var(--accent-strong, var(--accent, #dcaa2e));
  -webkit-appearance: none;
  appearance: none;
}

.search-field--prominent .search-field-control::placeholder {
  color: transparent;
  opacity: 0;
}

.search-field-prominent-placeholder {
  position: absolute;
  inset-inline: 0;
  min-width: 0;
  overflow: hidden;
  color: rgba(60, 60, 67, 0.64);
  color: var(--sub, rgba(60, 60, 67, 0.64));
  font: 500 16px/1.2 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  pointer-events: none;
  text-align: start;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-field-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
  gap: 2px;
  margin-inline-start: 6px;
}

.search-field--prominent .search-field-actions > button,
.search-field--prominent .search-field-clear {
  all: unset;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  width: 44px;
  min-width: 44px;
  height: 44px;
  box-sizing: border-box;
  border-radius: 999px;
  color: rgba(60, 60, 67, 0.72);
  color: var(--sub, rgba(60, 60, 67, 0.72));
  cursor: pointer;
  touch-action: manipulation;
  transition: color 150ms ease, background 150ms ease, transform 120ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .search-field--prominent .search-field-actions > button:hover,
  .search-field--prominent .search-field-clear:hover {
    background: var(--search-field-action-hover);
    color: #1c1c1e;
    color: var(--fg, #1c1c1e);
  }
}

.search-field--prominent .search-field-actions > button:active,
.search-field--prominent .search-field-clear:active {
  background: var(--search-field-action-active);
  transform: scale(0.94);
}

.search-field--prominent .search-field-actions > button:focus-visible,
.search-field--prominent .search-field-clear:focus-visible {
  outline: 2px solid #dcaa2e;
  outline: 2px solid var(--accent-strong, var(--accent, #dcaa2e));
  outline-offset: -2px;
}

.search-field--prominent .search-field-actions > button.is-active {
  background: rgba(220, 170, 46, 0.18);
  background: var(--accent-tint-active, rgba(220, 170, 46, 0.18));
  color: #1f2328;
  color: var(--fg, #1f2328);
}

.search-field--prominent .search-field-actions > .lab-search-reset {
  width: auto;
  min-width: 44px;
  flex-basis: auto;
  padding-inline: 12px;
  font: 600 14px/1 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.theme-dark .search-field--prominent,
[data-theme="dark"] .search-field--prominent {
  --search-field-surface: rgba(118, 118, 128, 0.26);
  --search-field-surface-focus: rgba(118, 118, 128, 0.34);
  --search-field-action-hover: rgba(255, 255, 255, 0.1);
  --search-field-action-active: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.theme-dark .search-field-leading,
.theme-dark .search-field-prominent-placeholder,
.theme-dark .search-field--prominent .search-field-actions > button,
.theme-dark .search-field--prominent .search-field-clear,
[data-theme="dark"] .search-field-leading,
[data-theme="dark"] .search-field-prominent-placeholder,
[data-theme="dark"] .search-field--prominent .search-field-actions > button,
[data-theme="dark"] .search-field--prominent .search-field-clear {
  color: rgba(235, 235, 245, 0.72);
}

.theme-dark .search-field--prominent .search-field-control,
[data-theme="dark"] .search-field--prominent .search-field-control {
  
  background: transparent;
  color: #fff;
  color: var(--fg, #fff);
}

@media (prefers-reduced-motion: reduce) {
  .search-field--prominent,
  .search-field--prominent .search-field-actions > button,
  .search-field--prominent .search-field-clear {
    transition: none;
  }
}

.lab-search-row--native-toolbar .lab-search-bar:empty,
.lab-search-row--native-toolbar:has(> .lab-search-bar:only-child:empty) {
  display: none;
}
.lab-search-row--native-toolbar {
  justify-content: flex-end;
}

.searchbar-input-wrap {
  position: relative;
  flex: 1 1 auto;
  width: auto;
  min-width: 0;
  max-width: 100%;
}

.searchbar-row--prominent {
  gap: 0;
}

.searchbar-input {
  width: 100%;
  padding: 10px 42px 10px 12px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  outline: none;
  background: #fff;
  background: var(--card-bg, #fff);
  caret-color: #dcaa2e;
  caret-color: var(--accent-strong, var(--accent, #dcaa2e));
}


.searchbar-input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}

.searchbar-input::placeholder {
  color: transparent;
}

.searchbar-center-placeholder {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  pointer-events: none;
  opacity: 0.72;
  font-size: 14px;
}


.searchbar-clear {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin-block: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(0, 0, 0, 0.48);
  color: var(--sub, rgba(0, 0, 0, 0.48));
  cursor: pointer;
}

.searchbar-clear > :is(.mdi, .dp-icon) {
  display: block;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  font-size: 18px;
  line-height: 1;
  pointer-events: none;
}

.searchbar-toggle.is-active {
  color: #1f2328;
  color: var(--fg, #1f2328);
}

.theme-dark .searchbar-input {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.theme-dark .searchbar-clear {
  color: rgba(255, 255, 255, 0.82);
}

.theme-dark .searchbar-center-placeholder {
  opacity: 0.85;
}


.searchbar-row--native-toolbar {
  min-height: 0;
  justify-content: flex-end;
}
.searchbar-row--native-toolbar:empty,
.searchbar-wrap:has(> .searchbar-row--native-toolbar:empty) {
  display: none;
}

.coach-hand-cue {
  position: absolute;
  pointer-events: none;
  opacity: 1;
  z-index: 3;
  transform: translate3d(0, 0, 0);
  color: rgba(12, 12, 12, 0.98);
  filter:
    drop-shadow(0 4px 10px rgba(255, 255, 255, 0.16))
    drop-shadow(0 1px 0 rgba(0, 0, 0, 0.22));
}

.theme-dark .coach-hand-cue {
  color: rgba(255, 255, 255, 0.98);
  filter:
    drop-shadow(0 4px 10px rgba(0, 0, 0, 0.22))
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.35));
}

.coach-hand-cue--chart {
  left: 34%;
  bottom: 30%;
  animation: coachHandChartTap 3.8s ease-in-out 3s 1 both !important;
}

.coach-hand-cue--list {
  right: 108px;
  top: 50%;
  transform: translate3d(0, -50%, 0);
  animation: coachHandListTap 3.8s ease-in-out 3s 1 both !important;
}

.coach-hand-cue--list.coach-hand-cue--opened {
  animation: coachHandListRelease 0.45s cubic-bezier(0.2, 0.75, 0.2, 1) 1 both;
}

@keyframes coachHandChartTap {
  0%   { transform: translateX(0); opacity: 1; }
  25%  { transform: translateX(200px); opacity: 1; }
  50%  { transform: translateX(200px); opacity: 1; }
  70%  { transform: translateX(0); opacity: 1; }
  100% { transform: translateX(0); opacity: 0; }
}

@keyframes coachHandListTap {
  
  25%  { transform: translate3d(0, -50%, 0); opacity: 1; }
  50%  { transform: translate3d(0, -50%, 0); opacity: 1; }
  70%  { transform: translate3d(0, -50%, 0); opacity: 1; }
  100% { transform: translate3d(0, -50%, 0); opacity: 0; }
}

@keyframes coachHandListRelease {
  0%   { transform: translate3d(0, -50%, 0); opacity: 1; }
  26%  { transform: translate3d(4px, -50%, 0) scale(1.02); opacity: 1; }
  72%  { transform: translate3d(10px, -50%, 0) scale(1); opacity: 1; }
  100% { transform: translate3d(18px, -50%, 0) scale(0.98); opacity: 0; }
}

.portal-bottom-sheet__backdrop {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 12px;
  background: rgba(0, 0, 0, 0.35);
  animation: portalBottomSheetBackdropIn 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

.portal-bottom-sheet {
  position: relative;
  width: min(560px, 100%);
  border-radius: 18px;
  padding: 10px;
  background: #fff;
  background: var(--card, #fff);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
  box-shadow:
    0 16px 50px rgba(0, 0, 0, 0.28),
    0 1px 0 rgba(255, 255, 255, 0.18) inset;
  animation: portalBottomSheetIn 0.42s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.portal-bottom-sheet::after {
  content: "";
  position: absolute;
  left: -1px;
  right: -1px;
  top: calc(100% - 1px);
  height: calc(0px + env(safe-area-inset-bottom, 0px));
  height: calc(var(--sheet-underhang, 0px) + var(--app-bottom-safe-reserve, env(safe-area-inset-bottom, 0px)));
  background: #fff;
  background: var(--card, #fff);
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  border-left: 1px solid var(--border, rgba(0, 0, 0, 0.08));
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  border-right: 1px solid var(--border, rgba(0, 0, 0, 0.08));
  pointer-events: none;
}

.portal-bottom-sheet.is-dragging,
.portal-bottom-sheet.is-closing-by-drag {
  animation: none;
}

.portal-bottom-sheet__header {
  position: relative;
  padding-top: 2px;
  cursor: grab;
  touch-action: none;
}

.portal-bottom-sheet__header-end {
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
}

.portal-bottom-sheet__header.is-handle-only {
  cursor: default;
}

.portal-bottom-sheet__handle {
  width: 36px;
  height: 4px;
  margin: 2px auto 10px;
  border-radius: 999px;
  
  background: rgba(120, 120, 128, 0.36);
}

.portal-bottom-sheet.is-dragging {
  transition: none;
}

.portal-bottom-sheet.is-closing-by-drag {
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.portal-bottom-sheet.is-dragging .portal-bottom-sheet__header {
  cursor: grabbing;
}

.portal-bottom-sheet__title {
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}

.portal-bottom-sheet__subtitle {
  margin-top: -4px;
  margin-bottom: 6px;
  text-align: center;
  color: var(--sub);
  font-size: 13px;
}

.portal-bottom-sheet__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.theme-dark .portal-bottom-sheet {
  background: #1b1b1b;
  background: var(--card, #1b1b1b);
  border-color: #2a2a2a;
  border-color: var(--border, #2a2a2a);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.46),
    0 1px 0 rgba(255, 255, 255, 0.04) inset;
}

.theme-dark .portal-bottom-sheet::after {
  background: #1b1b1b;
  background: var(--card, #1b1b1b);
  border-left-color: #2a2a2a;
  border-left-color: var(--border, #2a2a2a);
  border-right-color: #2a2a2a;
  border-right-color: var(--border, #2a2a2a);
}

.theme-dark .portal-bottom-sheet__handle {
  background: rgba(174, 174, 178, 0.36);
}

@media (max-width: 519px) {
  .portal-bottom-sheet__backdrop {
    padding:
      max(10px, calc(env(safe-area-inset-top, 0px) + 8px))
      8px
      0;
    padding:
      max(10px, calc(var(--app-top-safe-reserve, env(safe-area-inset-top, 0px)) + 8px))
      8px
      0;
    align-items: flex-end;
  }

  .portal-bottom-sheet {
    width: 100%;
    max-width: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    padding:
      10px
      10px
      calc(10px + env(safe-area-inset-bottom, 0px));
    padding:
      10px
      10px
      calc(10px + var(--app-bottom-safe-reserve, env(safe-area-inset-bottom, 0px)));
    box-shadow:
      0 -1px 0 rgba(255, 255, 255, 0.2) inset,
      0 -24px 48px rgba(0, 0, 0, 0.22);
    animation-duration: 0.46s;
  }

  .portal-bottom-sheet__header {
    padding-top: 4px;
  }
}

@keyframes portalBottomSheetBackdropIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes portalBottomSheetIn {
  0% {
    opacity: 0;
    transform: translateY(calc(100% + 24px)) scale(0.982);
  }
  68% {
    opacity: 1;
    transform: translateY(-4px) scale(1.003);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.exp-schedule-sheet {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  width: min(640px, calc(100vw - 24px));
  max-height: min(820px, calc(100dvh - 0px - 24px));
  max-height: min(820px, calc(100dvh - var(--app-top-safe-reserve, 0px) - 24px));
  padding: 0;
  overflow: hidden;
  border-radius: 34px 34px 0 0;
  background: #fff;
  background: var(--card, #fff);
}


.exp-schedule-sheet .portal-bottom-sheet__header { box-sizing: border-box; min-height: 52px; padding: 0 72px 2px; }
.exp-schedule-sheet .portal-bottom-sheet__handle { margin: 0 auto; }
.exp-schedule-sheet .portal-bottom-sheet__title { margin: 2px 0 0; font-size: 17px; font-weight: 700; letter-spacing: -.01em; line-height: 1.25; overflow-wrap: anywhere; }
.exp-schedule-sheet .portal-bottom-sheet__subtitle { margin: 3px 0 8px; color: var(--sub); font-size: 13px; font-weight: 600; line-height: 1.3; }
.exp-schedule-sheet .portal-bottom-sheet__content {
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}
.exp-schedule-scroll {
  position: relative;
  box-sizing: border-box;
  flex: 1 1 auto;
  height: 100%;
  min-height: 0;
  max-height: none;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
  padding: 0 38px max(40px, env(safe-area-inset-bottom, 0px));
  padding: 0 38px max(40px, var(--app-bottom-safe-reserve, env(safe-area-inset-bottom, 0px)));
  scrollbar-gutter: stable;
}
.exp-schedule-sheet .portal-bottom-sheet__header-start { position: absolute; top: 50%; left: 18px; transform: translateY(-50%); }
.exp-schedule-back,
.exp-schedule-close { display: grid; place-items: center; width: 40px; height: 40px; padding: 0; border: 0; border-radius: 50%; color: inherit; background: #f1f1f5; background: var(--surface-2, #f1f1f5); font-size: 30px; font-weight: 300; line-height: 1; }
.exp-schedule-hero { padding: 16px 0 30px; }
.exp-schedule-hero h2 { margin: 0; font-size: clamp(30px, 5vw, 44px); line-height: 1.06; letter-spacing: -.035em; }
.exp-schedule-section { margin: 0 0 30px; }
.exp-schedule-section h3 { margin: 0 0 12px; font-size: clamp(21px, 3vw, 28px); letter-spacing: -.02em; }
.exp-schedule-choice,
.exp-schedule-row,
.exp-schedule-time-list,
.exp-schedule-date-card { border: 0; border-radius: 24px; background: #f1f1f5; background: var(--surface-2, #f1f1f5); }
.exp-schedule-choice { position: relative; display: flex; align-items: center; min-height: 76px; padding: 0 20px; font-size: 21px; }
.exp-schedule-choice span { flex: 1 1; }
.exp-schedule-choice em { color: inherit; font-size: 18px; font-style: normal; font-weight: 750; }
.exp-schedule-choice select { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.exp-schedule-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 62px; padding: 0 20px; }
.exp-schedule-inline-input { display: flex; flex: 0 0 auto; align-items: center; gap: 9px; }
.exp-schedule-inline-input input { box-sizing: border-box; width: 82px; min-width: 82px; height: 42px; margin: 0; border: 0; border-radius: 14px; padding: 0 10px 0 14px; background: light-dark(#fff,#111); color: light-dark(#111,#fff); font: inherit; font-size: 18px; font-weight: 750; line-height: 42px; text-align: center; outline: none; }
.exp-schedule-inline-input input:focus-visible { outline: 3px solid color-mix(in srgb, currentColor 42%, transparent); outline-offset: 2px; }
.exp-schedule-inline-input input::-webkit-inner-spin-button { margin-left: 6px; opacity: .65; }
.exp-schedule-inline-input small { color: inherit; font-size: 15px; font-weight: 700; white-space: nowrap; }
.exp-schedule-weekdays { display: grid; grid-template-columns: repeat(7, 1fr); grid-gap: 7px; gap: 7px; margin-top: 12px; padding: 12px; border: 0; background: #f1f1f5; background: var(--surface-2, #f1f1f5); }
.exp-schedule-weekday { aspect-ratio: 1; min-height: 0; border: 0; border-radius: 50%; background: #fff; background: var(--card, #fff); }
.exp-schedule-weekday.is-selected { color: #fff; background: #ff375f; background: var(--accent, #ff375f); }
.exp-schedule-time-list { overflow: hidden; }
.exp-schedule-time-row { display: grid; grid-template-columns: 40px 1fr; align-items: center; grid-gap: 10px; gap: 10px; min-height: 70px; padding: 0 20px; border-bottom: 1px solid rgba(0,0,0,.08); border-bottom: 1px solid var(--border, rgba(0,0,0,.08)); }
.exp-schedule-time-row input { justify-self: start; border: 0; border-radius: 14px; padding: 8px 14px; background: color-mix(in srgb, #777 10%, transparent); background: color-mix(in srgb, var(--sub, #777) 10%, transparent); color: inherit; font: inherit; font-size: 21px; }
.exp-schedule-remove-time { display: grid; place-items: center; width: 30px; height: 30px; padding: 0; border: 0; border-radius: 50%; color: #fff; background: #ff3b4d; }
.exp-schedule-remove-time span,.exp-schedule-add-time>span { position: relative; display: grid; place-items: center; width: 100%; height: 100%; overflow: hidden; color: transparent; font-size: 0; line-height: 0; }
.exp-schedule-remove-time span::before,.exp-schedule-add-time>span::before,.exp-schedule-add-time>span::after { content: ""; position: absolute; inset: 50% auto auto 50%; width: 12px; height: 2px; border-radius: 999px; background: #fff; transform: translate(-50%, -50%); }
.exp-schedule-add-time>span::after { transform: translate(-50%, -50%) rotate(90deg); }
.exp-schedule-remove-time:disabled { opacity: .28; }
.exp-schedule-add-time { display: flex; align-items: center; gap: 14px; width: 100%; min-height: 64px; padding: 0 20px; border: 0; color: inherit; background: transparent; font-size: 19px; font-weight: 750; text-align: left; }
.exp-schedule-add-time>span { flex: 0 0 30px; width: 30px; height: 30px; border-radius: 50%; color: #fff; background: #30c759; }
.exp-schedule-hint { margin: 12px 6px 0; color: var(--sub); font-size: 15px; line-height: 1.35; }
.exp-schedule-date-card { overflow: hidden; padding: 0 20px; }

.exp-schedule-date-card label { display: grid; grid-template-columns: minmax(0, 84px) minmax(0, 1fr); grid-gap: 12px; gap: 12px; align-items: center; min-height: 72px; border-bottom: 1px solid rgba(0,0,0,.08); border-bottom: 1px solid var(--border, rgba(0,0,0,.08)); }
.exp-schedule-date-card label span { color: var(--sub); font-size: 13px; text-transform: uppercase; }

.exp-schedule-date-card label:only-child { grid-template-columns: minmax(0, 1fr); border-bottom: 0; }

.exp-schedule-date-card input { justify-self: start; box-sizing: border-box; width: auto; max-width: 100%; min-width: 0; border: 0; border-radius: 14px; padding: 8px 10px; background: color-mix(in srgb, #777 10%, transparent); background: color-mix(in srgb, var(--sub, #777) 10%, transparent); color: inherit; font: inherit; font-size: 17px; text-align: left; }

.exp-schedule-date-card input::-webkit-calendar-picker-indicator { margin-left: 4px; padding: 0; opacity: .55; }
.exp-schedule-date-card button { min-height: 54px; border: 0; color: inherit; background: transparent; font-weight: 750; text-align: left; }
.exp-schedule-options { overflow: hidden; border-radius: 24px; background: #f1f1f5; background: var(--surface-2, #f1f1f5); }
.exp-schedule-options .exp-schedule-row { border-radius: 0; background: transparent; }
.exp-schedule-options .exp-schedule-row + .exp-schedule-row { border-top: 1px solid rgba(0,0,0,.08); border-top: 1px solid var(--border, rgba(0,0,0,.08)); }
.exp-schedule-privacy-link { display: block; width: 100%; min-height: 44px; padding: 0 20px 14px; border: 0; background: transparent; color: inherit; font: inherit; font-size: 15px; font-weight: 600; text-align: left; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: color-mix(in srgb, currentColor 35%, transparent); }
.exp-schedule-exact-alarms { padding: 16px 20px 18px; border-top: 1px solid rgba(0,0,0,.08); border-top: 1px solid var(--border, rgba(0,0,0,.08)); }
.exp-schedule-exact-alarms strong { display: block; font-size: 16px; letter-spacing: -.01em; }
.exp-schedule-exact-alarms p { margin: 6px 0 12px; color: var(--sub); font-size: 14px; line-height: 1.35; }
.exp-schedule-exact-alarms button { min-height: 44px; padding: 0 18px; border: 1px solid color-mix(in srgb, currentColor 18%, transparent); border-radius: 999px; color: inherit; background: #fff; background: var(--card, #fff); font: inherit; font-size: 15px; font-weight: 700; }
.theme-dark .exp-schedule-exact-alarms button { color: #fff; border-color: rgba(255,255,255,.2); background: #1c1c1e; }
.exp-schedule-phase-options { padding: 0 20px 18px; border-top: 1px solid rgba(0,0,0,.08); border-top: 1px solid var(--border, rgba(0,0,0,.08)); }
.exp-schedule-phase-options h3 { margin: 18px 0 12px; font-size: 17px; letter-spacing: -.015em; }
.exp-schedule-phase-group { padding: 14px 0; border-top: 1px solid rgba(0,0,0,.08); border-top: 1px solid var(--border, rgba(0,0,0,.08)); }
.exp-schedule-phase-group:first-of-type { border-top: 0; }
.exp-schedule-phase-group-title { display: flex; flex-wrap: wrap; align-items: baseline; gap: 5px 8px; margin-bottom: 10px; }
.exp-schedule-phase-group strong { font-size: 16px; }
.exp-schedule-phase-group-title span { color: var(--sub); font-size: 13px; }
.exp-schedule-phase-group p { margin: 0; color: var(--sub); font-size: 14px; line-height: 1.35; }
.exp-schedule-phase-list { display: flex; flex-wrap: wrap; gap: 8px; }
.exp-schedule-phase-button { min-height: 38px; padding: 0 14px; border: 1px solid color-mix(in srgb, currentColor 18%, transparent); border-radius: 999px; color: inherit; background: #fff; background: var(--card, #fff); font: inherit; font-size: 14px; font-weight: 700; }
.exp-schedule-phase-button.is-selected { color: #fff; border-color: #111; background: #111; }
.exp-schedule-options input[type="checkbox"] { position: relative; flex: 0 0 auto; width: 51px; height: 31px; margin: 0; appearance: none; -webkit-appearance: none; border: 0; border-radius: 999px; background: color-mix(in srgb, #8e8e93 30%, transparent); background: color-mix(in srgb, var(--sub, #8e8e93) 30%, transparent); cursor: pointer; transition: background .18s ease; }
.exp-schedule-options input[type="checkbox"]::after { content: ""; position: absolute; top: 2px; left: 2px; width: 27px; height: 27px; border-radius: 50%; background: #fff; box-shadow: 0 1px 4px rgba(0,0,0,.24); transition: transform .18s ease; }
.exp-schedule-options input[type="checkbox"]:checked { background: #30c759; }
.exp-schedule-options input[type="checkbox"]:checked::after { transform: translateX(20px); }
.exp-schedule-options input[type="checkbox"]:focus-visible { outline: 3px solid color-mix(in srgb, currentColor 42%, transparent); outline-offset: 3px; }
.exp-schedule-confirm { width: 100%; min-height: 64px; border: 0; border-radius: 999px; color: light-dark(#fff,#111); background: light-dark(#111,#f2f2f7); font-size: 19px; font-weight: 800; }
.exp-schedule-confirm:disabled { opacity: .35; }
.theme-dark .exp-schedule-choice,
.theme-dark .exp-schedule-row,
.theme-dark .exp-schedule-time-list,
.theme-dark .exp-schedule-date-card,
.theme-dark .exp-schedule-options,
.theme-dark .exp-schedule-weekdays { background: #2c2c2e; }

.theme-dark .exp-schedule-back,
.theme-dark .exp-schedule-close { color: #fff; background: #2c2c2e; }
.theme-dark .exp-schedule-phase-button { color: #fff; border-color: rgba(255,255,255,.2); background: #1c1c1e; }
.theme-dark .exp-schedule-phase-button.is-selected { color: #111; border-color: #f2f2f7; background: #f2f2f7; }

@media (max-width: 519px) {
  .exp-schedule-sheet { width: 100%; max-height: calc(100dvh - 0px - 8px); max-height: calc(100dvh - var(--app-top-safe-reserve, 0px) - 8px); }
  .exp-schedule-scroll { padding-inline: 26px; }
  .exp-schedule-hero { padding-top: 10px; }
  .exp-schedule-phase-options { padding-inline: 16px; }
}

