@import url("/static/styles/01-base.css");
@import url("/static/styles/02-lines.css");
@import url("/static/styles/03-arrivals.css");
@import url("/static/styles/04-overlays.css");
@import url("/static/styles/05-stops.css");
@import url("/static/styles/06-planner.css");
@import url("/static/styles/07-map-responsive.css");

.app-header h1::before,
.app-header .subtitle {
  display: none !important;
}

.map-tools .map-planner-entry {
  display: none !important;
}

.map-tools .map-locate {
  border-color: rgba(var(--accent-rgb), 0.30);
  background: var(--accent);
  color: #fff;
}

.map-tools .map-locate.loading {
  opacity: 0.78;
  cursor: wait;
}

.weather-chip {
  justify-self: start;
  max-width: 100%;
  min-height: 32px;
  gap: 6px;
  padding: 4px 10px 4px 6px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #475467;
  box-shadow: none;
}

.weather-chip .weather-visual {
  width: 24px;
  height: 24px;
  min-width: 24px;
}

.weather-chip .weather-temp {
  color: #142033;
  font-size: 13px;
  font-weight: 760;
}

.weather-chip .weather-place {
  color: #667085;
  font-size: 12px;
  font-weight: 650;
}

.weather-chip .weather-desc {
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 740;
}

.controls {
  border-bottom: 0;
}

.weather-chip.weather-loading {
  min-width: 132px;
}

.weather-skeleton-icon,
.weather-skeleton-main,
.weather-skeleton-extra {
  display: inline-block;
  flex: 0 0 auto;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(226, 232, 240, 0.86), rgba(248, 250, 252, 0.96), rgba(226, 232, 240, 0.86));
  background-size: 220% 100%;
  animation: skeletonShimmer 1.05s ease-in-out infinite;
}

.weather-skeleton-icon {
  width: 24px;
  height: 24px;
}

.weather-skeleton-main {
  width: 30px;
  height: 12px;
}

.weather-skeleton-extra {
  width: 54px;
  height: 12px;
}

.map-zone-prompt {
  position: absolute;
  z-index: 462;
  left: 50%;
  top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 38px;
  max-width: calc(100vw - 32px);
  padding: 0 14px;
  border: 1px solid rgba(var(--accent-rgb), 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--accent-strong);
  box-shadow: var(--shadow-float);
  backdrop-filter: blur(14px) saturate(1.08);
  font-size: 13px;
  font-weight: 720;
  white-space: nowrap;
  transform: translate(-50%, -8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.map-zone-prompt[hidden] {
  display: none;
}

.map-zone-prompt.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.map-zone-prompt .icon {
  width: 17px;
  height: 17px;
}

.controls {
  gap: 8px;
  padding: 0 14px 8px;
}

.main-groups {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: calc(100% + 28px);
  margin: 0 -14px;
  padding: 0 12px;
  border: 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.78);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 5px 18px rgba(15, 23, 42, 0.045);
  backdrop-filter: none;
}

.main-group {
  position: relative;
  height: 46px;
  grid-template-columns: 18px auto;
  gap: 7px;
  padding: 0 8px;
  border-radius: 0;
  background: transparent;
  color: #475569;
  box-shadow: none;
  font-size: 14px;
  font-weight: 680;
}

.main-group[data-main-section="map"] {
  display: grid;
}

.main-group.active {
  background: transparent;
  color: #087b5d;
  box-shadow: none;
}

.main-group.active::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: #0f8f6f;
}

.main-group .icon {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

.search-wrap input {
  padding-right: 42px;
}

.search-clear {
  right: 8px;
}

.app.mode-stops aside,
.app.mode-favorites aside {
  display: flex;
  flex-direction: column;
}

.app-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: auto;
  margin: auto 18px 10px !important;
  padding: 10px 8px 0 !important;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #64748b;
  font-size: 12.5px;
  line-height: 1.25;
  text-align: center;
}

.app-status,
.app-status::before,
.app-status::after {
  border-top: 0 !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
}

.app-status::before,
.app-status::after {
  content: none !important;
}

.recent-stops,
.favorite-stops {
  border-bottom: 0 !important;
}

#statusMessage {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-version {
  display: inline;
  flex: 0 0 auto;
  color: #94a3b8;
  font-size: 11px;
  font-weight: 560;
  white-space: nowrap;
}

.app-version::before {
  content: "· ";
}

.app-status.error {
  color: var(--danger);
  background: transparent;
}

.arrival-chevron-flow {
  font-size: 20px !important;
  font-weight: 520 !important;
  letter-spacing: 0 !important;
  transform: translateX(-3px);
}

.arrival-chevron-flow span {
  animation-duration: 1.05s !important;
}

.popup-minutes .arrival-chevron-flow {
  font-size: 16px !important;
  transform: translateX(-2px);
}

.arrival-card.with-actions {
  display: block;
  padding: 0;
  overflow: hidden;
}

.arrival-card-main {
  width: 100%;
  min-height: 52px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  padding: 9px 10px;
  text-align: left;
  box-shadow: none;
}

.arrival-card-main:hover {
  background: rgba(248, 250, 252, 0.72);
  box-shadow: none;
}

.arrival-card-actions {
  display: none;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 7px 8px;
  padding: 0 9px 9px;
}

.arrival-card.actions-open .arrival-card-actions {
  display: grid;
}

.arrival-card-actions::-webkit-scrollbar {
  display: none;
}

.arrival-alert-control {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 30px;
  border: 1px solid rgba(15, 159, 122, 0.16);
  border-radius: 8px;
  background: rgba(237, 248, 244, 0.78);
  overflow: hidden;
}

.arrival-alert-menu {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 7px;
  padding: 9px;
  border: 1px solid rgba(15, 159, 122, 0.18);
  border-radius: 8px;
  background: #f8fafc;
  box-shadow: none;
}

.arrival-alert-menu[hidden] {
  display: none;
}

.arrival-alert-choice {
  height: 30px;
  min-width: 0;
  padding: 0 6px;
  border: 1px solid rgba(15, 159, 122, 0.12);
  border-radius: 7px;
  background: rgba(237, 248, 244, 0.86);
  color: var(--accent-strong);
  box-shadow: none;
  font-size: 11.5px;
  font-weight: 700;
}

.arrival-alert-choice:hover {
  background: rgba(var(--accent-rgb), 0.14);
}

.arrival-alert-label {
  grid-column: 1 / -1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #475569;
  font-size: 11.75px;
  font-weight: 680;
}

.arrival-alert-toggle {
  justify-self: start;
  background: rgba(237, 248, 244, 0.9);
  border-color: rgba(15, 159, 122, 0.18);
  color: var(--accent-strong);
}

.arrival-alert-toggle.active {
  display: none;
}

.arrival-alert-state {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 34px;
  padding: 6px 8px;
  border: 1px solid rgba(15, 159, 122, 0.16);
  border-radius: 8px;
  background: rgba(237, 248, 244, 0.74);
}

.arrival-alert-state[hidden] {
  display: none;
}

.arrival-alert-state-text {
  min-width: 0;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 720;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.arrival-alert-cancel {
  flex: 0 0 auto;
  height: 26px;
  padding: 0 8px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 7px;
  background: #fff;
  color: #475569;
  box-shadow: none;
  font-size: 11.5px;
  font-weight: 680;
}

.arrival-secondary-actions {
  grid-column: 2;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  min-width: 0;
}

.arrival-alert-select {
  width: 62px;
  height: 30px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--accent-strong);
  padding: 0 4px 0 8px;
  font: inherit;
  font-size: 11.5px;
  font-weight: 650;
  outline: none;
}

.arrival-action-button {
  flex: 0 0 auto;
  min-width: 0;
  height: 30px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 8px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 8px;
  background: #f1f5f9;
  color: #334155;
  box-shadow: none;
  font-size: 11.5px;
  font-weight: 680;
}

.arrival-action-button .icon {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  stroke-width: 2;
}

.arrival-alert-control .arrival-action-button {
  border-width: 0 0 0 1px;
  border-color: rgba(15, 159, 122, 0.14);
  border-radius: 0;
  background: transparent;
  color: var(--accent-strong);
}

.arrival-action-button.active {
  background: rgba(var(--accent-rgb), 0.10);
  border-color: rgba(var(--accent-rgb), 0.18);
  color: var(--accent-strong);
}

.arrival-action-button:disabled,
.arrival-alert-select:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.arrival-active-label {
  flex: 0 0 auto;
  color: var(--accent-strong);
  font-size: 11px;
  font-weight: 680;
  padding: 0 3px;
}

.arrival-card.with-actions .arrival-card-chevron {
  width: 14px;
  color: #94a3b8;
  font-size: 18px;
  line-height: 1;
  text-align: center;
  transition: transform 160ms ease;
}

.arrival-card.actions-open .arrival-card-chevron {
  transform: rotate(90deg);
}

.line-variant-stop {
  width: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  box-shadow: none;
}

.line-variant-stop:hover,
.line-variant-stop:focus-visible {
  background: rgba(15, 159, 122, 0.06);
}

.nearby-list {
  align-content: start;
  grid-auto-rows: max-content;
}

.nearby-realtime.loading:empty {
  display: none;
}

.nearby-realtime.eta-changing {
  animation: realtimeEtaSwap 560ms cubic-bezier(0.16, 1, 0.3, 1);
}

.favorite-stop-eta.eta-changing .stop-eta-value,
.recent-stop-eta.eta-changing .stop-eta-value {
  animation: shortcutEtaSlide 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes realtimeEtaSwap {
  from {
    opacity: 0;
    filter: blur(1px);
    transform: translateY(2px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes shortcutEtaSlide {
  from {
    opacity: 0;
    filter: blur(1px);
    transform: translateX(3px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
  }
}

.nearby-stop {
  min-height: 0;
}

@media (max-width: 760px) {
  .app.mobile-list .app-header {
    padding: 10px 14px 8px;
  }

  .app.mobile-list .brand-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
  }

  .app.mobile-list .controls,
  .app.mobile-map .controls {
    gap: 7px;
    padding: 0 10px 7px;
  }

  .app.mobile-list .app-status {
    margin: auto 14px calc(9px + env(safe-area-inset-bottom, 0px)) !important;
    padding: 10px 0 0 !important;
  }

  .app.mobile-list .main-groups,
  .app.mobile-map .main-groups {
    width: calc(100% + 20px);
    margin: 0 -10px;
    gap: 0;
    padding: 0 4px;
    border-radius: 0;
  }

  .app.mobile-list .main-group,
  .app.mobile-map .main-group {
    height: 38px;
    grid-template-columns: 14px auto;
    gap: 4px;
    padding: 0 3px;
    border-radius: 0;
    font-size: 12.8px;
  }

  .app.mobile-map .map-wrap:has(.line-variant-control.visible) .map-tools,
  .app.mobile-map .map-wrap:has(.line-variant-control.expanded.visible) .map-tools {
    display: none;
  }

  .app.mobile-map .line-variant-control.expanded .line-variant-detail {
    display: none;
  }

  .app.mobile-list.mode-stops.searching-stops .nearby-list {
    align-content: start;
    grid-auto-rows: max-content;
  }

  .app.mobile-list.mode-stops.searching-stops .nearby-stop {
    min-height: 0;
    align-items: center;
    padding: 8px 10px;
  }

  .app.mobile-list.mode-stops.searching-stops .nearby-main {
    gap: 4px;
  }

  .app.mobile-list .main-group .icon,
  .app.mobile-map .main-group .icon {
    width: 14px;
    height: 14px;
  }

  .app.mobile-list .main-group.active::after,
  .app.mobile-map .main-group.active::after {
    left: 6px;
    right: 6px;
    height: 3px;
  }

}

section.arrivals .favorite-toggle {
  border-color: rgba(148, 163, 184, 0.48);
  background: #ffffff;
  color: #64748b;
}

section.arrivals .favorite-toggle.active {
  border-color: rgba(245, 158, 11, 0.62);
  background: rgba(251, 191, 36, 0.22);
  color: #b45309;
  box-shadow: 0 8px 18px rgba(180, 83, 9, 0.14);
}

section.arrivals .favorite-toggle .icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linejoin: round;
}

section.arrivals .favorite-toggle.active .icon {
  fill: currentColor;
  stroke: currentColor;
}

.stop-card-icon {
  width: 26px !important;
  height: 26px !important;
  background: transparent !important;
  color: inherit !important;
  box-shadow: none !important;
}

.favorite-stop {
  grid-template-columns: 26px minmax(0, 1fr) 28px !important;
  gap: 7px !important;
}

.favorite-stop-eta {
  width: 100%;
  min-height: 18px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--accent-strong);
  font-size: 10.8px;
  line-height: 1.15;
  font-weight: 560;
  white-space: nowrap;
}

.favorite-stop-eta.loading:empty,
.recent-stop-eta.loading:empty {
  display: inline-flex;
  width: min(145px, 100%);
  height: 18px;
  min-height: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #e5ebf1 0%, #ffffff 44%, #e1e8f0 84%);
  background-size: 260% 100%;
  animation: skeletonShimmer 1.05s ease-in-out infinite;
}

.favorite-stop-eta.rotating,
.recent-stop-eta.rotating,
.recent-stop-eta.live,
.recent-stop-eta.muted {
  min-height: 18px;
}

.stop-eta-prefix {
  flex: 0 0 auto;
  color: #64748b;
  font-weight: 650;
}

.stop-eta-value {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.stop-eta-muted {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #64748b;
  font-weight: 560;
  white-space: nowrap;
}

.stop-eta-muted.scheduled {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  max-width: 100%;
}

.stop-eta-muted.scheduled .stop-eta-prefix {
  color: #7c8a9e;
  font-weight: 650;
}

.arrival-scheduled-empty {
  align-items: stretch;
  text-align: left;
}

.arrival-scheduled-list {
  display: grid;
  gap: 6px;
  width: 100%;
  margin-top: 3px;
}

.arrival-scheduled-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  gap: 10px;
  align-items: center;
  min-height: 46px;
  padding: 8px 10px;
  border: 1px solid rgba(226, 232, 240, 0.78);
  border-radius: 10px;
  background: #fff;
}

.arrival-scheduled-time {
  color: var(--ink);
  font-size: 16px;
  font-weight: 760;
  font-variant-numeric: tabular-nums;
}

.arrival-scheduled-action {
  height: 32px;
  min-width: 0;
  padding: 0 9px;
  border: 1px solid rgba(var(--accent-rgb), 0.22);
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  box-shadow: none;
  font-size: 12px;
  font-weight: 650;
}

.arrival-scheduled-action .icon {
  width: 16px;
  height: 16px;
}

@media (max-width: 860px) {
  .map-tools .map-locate {
    width: auto;
    min-width: 82px;
    padding: 0 12px;
  }
  .map-tools .map-locate .map-action-label {
    display: inline;
    font-size: 12px;
  }
  .map-zone-prompt {
    top: calc(74px + env(safe-area-inset-top));
    min-height: 36px;
    padding: 0 12px;
    font-size: 12.5px;
  }
}

@media (max-width: 430px) {
  .arrival-scheduled-row {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }
  .arrival-scheduled-action {
    grid-column: 2 / 4;
    justify-self: start;
  }
}

.planner-results-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #64748b;
  font-size: 12px;
  font-weight: 560;
  line-height: 1.35;
  padding: 7px 9px;
  border: 1px solid rgba(226, 232, 240, 0.78);
  border-radius: 10px;
  background: #fff;
}

.planner-results-note span {
  min-width: 0;
}

.planner-show-slow.inline {
  flex: 0 0 auto;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(var(--accent-rgb), 0.22);
  border-radius: 999px;
  background: #fff;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 650;
  box-shadow: none;
}

.planner-time-row {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px auto;
  gap: 8px;
  align-items: end;
  padding-left: 32px;
}

.planner-time-field {
  min-width: 0;
  display: grid;
  gap: 4px;
  color: #64748b;
  font-size: 10.5px;
  font-weight: 650;
  line-height: 1.1;
}

.planner-time-field input {
  display: block;
  width: 100%;
  min-width: 0;
  height: 34px;
  border: 1px solid rgba(226, 232, 240, 0.82);
  border-radius: 10px;
  padding: 0 9px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 12px;
  font-weight: 560;
}

.planner-time-field.active {
  color: var(--accent-strong);
}

.planner-time-field.active input,
.planner-time-field input.has-value {
  border-color: rgba(var(--accent-rgb), 0.36);
  background: var(--accent-soft);
}

.planner-now {
  height: 34px;
  min-width: 64px;
  padding: 0 10px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 650;
}

.planner-now.active {
  border-color: rgba(var(--accent-rgb), 0.40);
  background: var(--accent);
  color: #fff;
}

@media (max-width: 430px) {
  .planner-time-row {
    grid-template-columns: minmax(0, 1fr) 96px auto;
    padding-left: 28px;
  }
  .planner-now {
    min-width: 56px;
  }
  .planner-results-note {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }
}

.planner-wait-warning {
  display: grid;
  gap: 3px;
  border-color: #f2d7a7 !important;
  background: #fff8e8 !important;
  color: #6e5300 !important;
  font-weight: 560 !important;
}

.planner-wait-warning strong {
  color: #5c4500;
  font-size: 12.5px;
  line-height: 1.2;
}

.planner-wait-warning span {
  font-size: 12px;
  line-height: 1.35;
}

@media (prefers-color-scheme: dark) {
  .map-zone-prompt {
    border-color: rgba(143, 224, 193, 0.24);
    background: rgba(17, 26, 36, 0.92);
    color: #8fe0c1;
  }
  .map-tools .map-locate {
    border-color: rgba(143, 224, 193, 0.34);
    background: #087b5d;
    color: #fff;
  }
  .planner-results-note {
    color: #93a4b8;
    border-color: rgba(71, 85, 105, 0.62);
    background: #111a24;
  }
  .planner-wait-warning {
    border-color: rgba(245, 158, 11, 0.34) !important;
    background: rgba(120, 83, 20, 0.24) !important;
    color: #f8d58a !important;
  }
  .planner-wait-warning strong {
    color: #ffe7a8;
  }
  .planner-time-field {
    color: #93a4b8;
  }
  .planner-time-field input {
    border-color: rgba(71, 85, 105, 0.82);
    background: #111a24;
    color: #e5edf6;
    color-scheme: dark;
    caret-color: #e5edf6;
  }
  .planner-time-field input::-webkit-calendar-picker-indicator {
    filter: invert(1) brightness(1.35);
    opacity: 0.82;
  }
  .planner-time-field input::-webkit-datetime-edit,
  .planner-time-field input::-webkit-datetime-edit-fields-wrapper,
  .planner-time-field input::-webkit-datetime-edit-text,
  .planner-time-field input::-webkit-datetime-edit-month-field,
  .planner-time-field input::-webkit-datetime-edit-day-field,
  .planner-time-field input::-webkit-datetime-edit-year-field,
  .planner-time-field input::-webkit-datetime-edit-hour-field,
  .planner-time-field input::-webkit-datetime-edit-minute-field,
  .planner-time-field input::-webkit-datetime-edit-ampm-field {
    color: #e5edf6;
  }
  .planner-time-field.active {
    color: #8fe0c1;
  }
  .planner-time-field.active input,
  .planner-time-field input.has-value {
    border-color: rgba(143, 224, 193, 0.34);
    background: rgba(20, 83, 65, 0.28);
  }
  .planner-now.active {
    border-color: rgba(143, 224, 193, 0.36);
    background: #087b5d;
    color: #fff;
  }
  .planner-show-slow.inline {
    background: #111a24;
    color: #8fe0c1;
    border-color: rgba(143, 224, 193, 0.24);
  }
  .stop-eta-muted.scheduled .stop-eta-prefix {
    color: #93a4b8;
  }
  .arrival-scheduled-row {
    border-color: rgba(71, 85, 105, 0.62);
    background: #111a24;
  }
  .arrival-scheduled-time {
    color: #e5edf6;
  }
  .arrival-scheduled-action {
    border-color: rgba(143, 224, 193, 0.24);
    background: rgba(20, 83, 65, 0.28);
    color: #8fe0c1;
  }
}

.favorite-stop-eta.loading,
.favorite-stop-eta.muted {
  color: #64748b;
  font-weight: 500;
}

.favorite-stops-toggle,
.stops-section-toggle {
  min-height: 34px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #087b5d;
  font-size: 12.5px;
  font-weight: 690;
  box-shadow: none;
}

.favorite-stops-toggle:hover,
.stops-section-toggle:hover {
  background: rgba(15, 143, 111, 0.08);
}

.favorites-empty {
  min-height: 112px;
  gap: 6px;
  padding: 16px 18px;
}

.favorites-empty-icon {
  width: 36px;
  height: 36px;
}

.favorites-empty-icon .icon {
  width: 18px;
  height: 18px;
}

@media (prefers-color-scheme: dark) {
  section.arrivals .favorite-toggle {
    border-color: rgba(148, 163, 184, 0.34) !important;
    background: #172331 !important;
    color: #94a3b8 !important;
  }

  section.arrivals .favorite-toggle.active {
    border-color: rgba(245, 158, 11, 0.58) !important;
    background: rgba(245, 158, 11, 0.20) !important;
    color: #fbbf24 !important;
  }
}
