.mm-screen {
  padding: 0;
  background: #d1d1d6;
}

.hs-shell {
  --hs-teal: #00a9ce;
  --hs-teal-pressed: rgba(255, 255, 255, 0.18);
  --hs-white: #ffffff;
  --hs-page: #ffffff;
  --hs-section: #f2f2f2;
  --hs-row-shift: #e8f4f8;
  --hs-text: #000000;
  --hs-text-secondary: #757575;
  --hs-text-meta: #666666;
  --hs-divider: #e8e8e8;
  --hs-chevron: #aeaeb2;
  --hs-badge: #1a1a1a;
  --hs-badge-text: #ffffff;
  --hs-orange-icon: #ff9800;
  --hs-inset: 15px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  width: 100%;
  max-width: 100%;
  min-height: 100dvh;
  margin: 0 auto;
  background: var(--hs-page);
  display: flex;
  flex-direction: column;
  position: relative;
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
}

.hs-shell * {
  box-sizing: border-box;
}

.hs-shell.phone--menu-open {
  overflow: hidden;
}

.hs-topbar {
  background: var(--hs-teal);
  color: var(--hs-white);
  flex-shrink: 0;
}

.hs-topbar__safe {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  padding: calc(12px + var(--safe-top)) 10px 16px;
  gap: 4px;
}

.hs-icon-btn {
  border: none;
  background: transparent;
  color: inherit;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hs-icon-btn:hover {
  background: var(--hs-teal-pressed);
}

.hs-icon-btn--broadcast .hs-broadcast-svg {
  display: block;
  width: 42px;
  height: 42px;
  color: #fff;
  transform: translateY(4px);
}

.hs-topbar__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hs-topbar__title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.hs-topbar__subtitle {
  margin: 3px 0 0;
  font-size: 13px;
  font-weight: 400;
}

.hs-menu-backdrop {
  position: absolute;
  inset: 0;
  z-index: 29;
  background: rgba(0, 0, 0, 0.38);
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
}

.hs-shell.phone--menu-open .hs-menu-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.hs-menu-panel {
  position: absolute;
  z-index: 30;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(86%, 288px);
  background: var(--hs-white);
  box-shadow: 6px 0 28px rgba(0, 0, 0, 0.14);
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.26s ease;
}

.hs-shell.phone--menu-open .hs-menu-panel {
  transform: translateX(0);
}

.hs-menu-panel__top {
  display: flex;
  justify-content: flex-end;
  padding: calc(8px + var(--safe-top)) 8px 4px;
}

.hs-menu-panel__close {
  border: none;
  background: transparent;
  color: var(--hs-text-secondary);
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
}

.hs-menu-panel__user {
  padding: 4px 20px 20px;
  border-bottom: 1px solid var(--hs-divider);
}

.hs-menu-panel__name {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.hs-menu-panel__venue {
  margin: 6px 0 0;
  font-size: 14px;
  color: var(--hs-text-secondary);
}

.hs-menu-panel__nav {
  display: flex;
  flex-direction: column;
  padding: 12px 0 calc(12px + var(--safe-bottom));
}

.hs-menu-panel__item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  border: none;
  background: transparent;
  font-family: var(--font-body, "Nunito", sans-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--hs-text);
  text-align: left;
  cursor: pointer;
  transition: background 0.12s;
}

.hs-menu-panel__item:active {
  background: #f8faff;
}

.hs-menu-panel__item--danger {
  color: #ef4444;
  opacity: 0.4;
  cursor: default;
}

.hs-scroll {
  flex: 1;
  overflow-y: auto;
  background: var(--hs-page);
  padding-bottom: calc(8px + var(--safe-bottom));
  -webkit-overflow-scrolling: touch;
}

.hs-week-head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px var(--hs-inset);
  min-height: 40px;
  border: none;
  border-bottom: 1px solid var(--hs-divider);
  background: var(--hs-section);
  text-align: left;
  cursor: pointer;
}

.hs-week-head__alert {
  width: 22px;
  height: 22px;
  border-radius: 3px;
  background: var(--hs-orange-icon);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hs-week-head__label {
  flex: 1;
  font-size: 13px;
  font-weight: 500;
  color: var(--hs-text-meta);
}

.hs-week-head__tag {
  font-weight: 700;
  letter-spacing: 0.045em;
}

.hs-week-head__chevron {
  color: var(--hs-chevron);
}

.hs-hours {
  background: var(--hs-white);
  padding: 8px var(--hs-inset) 9px;
  font-size: 13px;
  color: var(--hs-text-secondary);
  border-bottom: 1px solid var(--hs-divider);
}

.hs-days {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hs-day {
  border-bottom: 1px solid var(--hs-divider);
}

.hs-day--active {
  background: var(--hs-row-shift);
}

.hs-day__row {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 50px;
  padding: 13px var(--hs-inset);
}

.hs-day--shift .hs-day__row,
.hs-day--open .hs-day__row {
  cursor: pointer;
  min-height: 61px;
  padding-top: 10px;
  padding-bottom: 11px;
}

.hs-day__main {
  flex: 1;
  min-width: 0;
}

.hs-day__date-line {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.32;
}

.hs-day--shift .hs-day__date-line,
.hs-day--open .hs-day__date-line {
  font-weight: 600;
}

.hs-day__today {
  color: var(--hs-teal);
  font-weight: 600;
}

.hs-day__shift-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
}

.hs-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  padding: 3px 8px;
  margin-right: 8px;
  border-radius: 4px;
  background: var(--hs-badge);
  color: var(--hs-badge-text);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hs-day__time,
.hs-day__available {
  font-size: 17px;
  font-weight: 600;
  margin-right: 14px;
}

.hs-day__meta {
  font-size: 15px;
  color: var(--hs-text-meta);
}

.hs-day__chevron {
  color: var(--hs-chevron);
}

.hs-home-indicator {
  height: calc(5px + var(--safe-bottom));
  min-height: 5px;
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
  padding-bottom: var(--safe-bottom);
}

.hs-home-indicator::before {
  content: "";
  width: 134px;
  height: 5px;
  border-radius: 100px;
  background: #000;
  opacity: 0.28;
}
