.customer-view-inactive {
  display: none !important;
}

.rider-nav button {
  min-width: 116px;
  min-height: 44px;
  display: grid;
  place-items: center;
  padding: 0 12px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: #38534f;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.rider-nav button:hover {
  background: var(--turquoise-subtle);
}

.rider-nav button.active,
.rider-nav button[aria-current="page"] {
  color: #007f73;
  background: #e6f7f4;
}

.customer-section-divider {
  height: 1px;
  margin: 24px 0;
  background: var(--line);
}

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

.wallet-card {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface, #fff);
}

.wallet-card > span,
.wallet-card > strong {
  display: block;
}

.wallet-card > span {
  margin-bottom: 6px;
  color: var(--turquoise-strong, #007f73);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.wallet-card > strong {
  color: var(--ink);
  font-size: 18px;
}

.wallet-card > p {
  margin: 8px 0 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .rider-app {
    min-height: 100vh;
    min-height: 100dvh;
    background: #edf5f2;
  }

  .rider-app .shell {
    width: 100%;
    max-width: none;
    padding: 0;
  }

  .rider-app .topbar {
    position: fixed;
    z-index: 50;
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    margin: 0;
    padding: calc(10px + env(safe-area-inset-top)) 16px 10px;
    background: linear-gradient(180deg, rgba(237, 245, 242, .98) 0%, rgba(237, 245, 242, .86) 62%, rgba(237, 245, 242, 0) 100%);
    pointer-events: none;
  }

  .rider-app .topbar > * {
    pointer-events: auto;
  }

  .rider-app .brand-logo {
    width: 112px;
    height: auto;
  }

  .rider-app:not(.guest-mode) .account-bar {
    position: fixed;
    z-index: 51;
    top: calc(12px + env(safe-area-inset-top));
    right: 16px;
    left: auto;
    width: auto;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    pointer-events: none;
  }

  .rider-app:not(.guest-mode) .account-bar > div,
  .rider-app:not(.guest-mode) .account-bar .auth-form {
    display: none;
  }

  .rider-app:not(.guest-mode) .account-bar #signout:not(.hidden) {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid rgba(18, 51, 47, .12);
    border-radius: 999px;
    background: rgba(255, 255, 255, .96);
    color: #12332f;
    box-shadow: 0 8px 24px rgba(18, 51, 47, .1);
    pointer-events: auto;
  }

  .rider-map-layout {
    position: relative;
    display: block;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
  }

  .rider-unified-map {
    position: fixed;
    z-index: 1;
    inset: 0;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: #edf5f2;
    box-shadow: none;
    overflow: hidden;
  }

  .rider-unified-map .map-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .rider-unified-map .map-chip {
    top: calc(76px + env(safe-area-inset-top));
    right: auto;
    left: 16px;
    max-width: calc(100% - 32px);
    padding: 9px 12px;
    border: 1px solid rgba(18, 51, 47, .09);
    border-radius: 14px;
    background: rgba(255, 255, 255, .94);
    color: #294c46;
    box-shadow: 0 8px 24px rgba(18, 51, 47, .1);
    font-size: 11px;
    font-weight: 750;
    backdrop-filter: blur(16px);
  }

  .map-controls {
    top: calc(122px + env(safe-area-inset-top));
    right: 16px;
    left: 16px;
    align-items: center;
  }

  .map-filter {
    gap: 2px;
    padding: 4px;
    border: 1px solid rgba(18, 51, 47, .08);
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 8px 24px rgba(18, 51, 47, .1);
  }

  .map-filter button {
    min-height: 36px;
    padding: 0 13px;
    font-size: 12px;
  }

  .map-filter button.active {
    background: #0e5148;
    color: #fff;
  }

  .map-locate {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(18, 51, 47, .08);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 8px 24px rgba(18, 51, 47, .1);
  }

  .ride-sheet {
    position: fixed;
    z-index: 20;
    right: 0;
    bottom: calc(72px + env(safe-area-inset-bottom));
    left: 0;
    width: auto;
    max-height: 52vh;
    max-height: 52dvh;
    margin: 0;
    padding: 0 16px 18px;
    border: 0;
    border-radius: 28px 28px 0 0;
    background: rgba(255, 255, 255, .985);
    box-shadow: 0 -12px 36px rgba(18, 51, 47, .13);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .ride-sheet .sheet-handle {
    position: sticky;
    z-index: 3;
    top: 0;
    display: block;
    height: 30px;
    margin: 0 -16px 2px;
    background: rgba(255, 255, 255, .985);
  }

  .ride-sheet .sheet-handle span {
    width: 38px;
    height: 4px;
    background: #c3d2ce;
  }

  .ride-sheet > .eyebrow,
  .ride-sheet > h1,
  .ride-sheet > .lede {
    display: none;
  }

  .service-picker {
    gap: 8px;
    margin: 0 0 14px;
  }

  .service-choice {
    grid-template-columns: 38px minmax(0, 1fr);
    min-height: 58px;
    padding: 9px 10px;
    border: 1px solid #dce7e4;
    border-radius: 18px;
    background: #f8fbfa;
    box-shadow: none;
  }

  .service-choice.selected {
    padding: 9px 10px;
    border: 1px solid #00a693;
    background: #e8f7f4;
    box-shadow: inset 0 0 0 1px rgba(0, 166, 147, .12);
  }

  .service-choice-icon {
    width: 38px;
    height: 38px;
    border-radius: 13px;
    background: #0e5148;
  }

  .service-choice[data-service="scooter"] .service-choice-icon {
    background: #00a693;
  }

  .service-choice strong {
    font-size: 15px;
  }

  .service-choice small {
    font-size: 11px;
  }

  .ride-sheet.collapsed {
    max-height: 94px;
    padding-bottom: 6px;
    overflow: hidden;
  }

  .mobility-legend {
    padding-bottom: 4px;
  }

  .rider-nav {
    position: fixed;
    z-index: 40;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    max-width: none;
    min-height: calc(72px + env(safe-area-inset-bottom));
    margin: 0;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    justify-content: space-around;
    gap: 4px;
    border: 0;
    border-top: 1px solid rgba(18, 51, 47, .08);
    border-radius: 0;
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 -8px 28px rgba(18, 51, 47, .09);
    backdrop-filter: blur(20px);
  }

  .rider-nav button {
    min-width: 0;
    min-height: 52px;
    flex: 1;
    padding: 0 8px;
    border-radius: 16px;
    font-size: 12px;
  }

  .rider-nav button.active,
  .rider-nav button[aria-current="page"] {
    background: #e7f6f3;
    color: #007f73;
  }

  .rider-app .history-panel:not(.customer-view-inactive) {
    margin: calc(78px + env(safe-area-inset-top)) 12px calc(92px + env(safe-area-inset-bottom));
    padding: 20px;
    border-radius: 24px;
  }

  .wallet-grid {
    grid-template-columns: 1fr;
  }
}

/* The map workspace must not contain a nested scrolling booking panel. */
.rider-map-layout {
  align-items: stretch;
}

.rider-map-layout > .ride-sheet {
  align-self: stretch;
  max-height: none;
  overflow: visible;
}

.rider-map-layout .sheet-handle {
  display: none !important;
}

.rider-map-layout .scooter-nearby-list {
  max-height: none;
  overflow: visible;
}

@media (min-width: 1101px) {
  .ride-sheet .vehicle-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 12px;
  }

  .ride-sheet .vehicle {
    grid-template-columns: 38px minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 2px 8px;
    min-width: 0;
    padding: 9px;
  }

  .ride-sheet .vehicle.selected {
    padding: 8px;
  }

  .ride-sheet .vehicle-icon {
    grid-row: 1 / 3;
    width: 38px;
    height: 36px;
  }

  .ride-sheet .vehicle > span:nth-child(2) {
    min-width: 0;
  }

  .ride-sheet .vehicle small {
    overflow: hidden;
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .ride-sheet .vehicle-price {
    grid-column: 2;
    justify-self: start;
    font-size: 11px;
    line-height: 1.2;
  }

  .ride-sheet .scooter-nearby-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ride-sheet .nearby-scooter {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 8px;
    min-width: 0;
    padding: 8px;
  }

  .ride-sheet .nearby-scooter > span:last-child {
    display: none;
  }

  .ride-sheet .nearby-scooter-icon {
    width: 34px;
    height: 34px;
  }

  .ride-sheet .nearby-scooter small {
    overflow: hidden;
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media (max-width: 1100px) {
  html:has(.rider-map-layout:not(.customer-view-inactive)),
  body.rider-app:has(.rider-map-layout:not(.customer-view-inactive)) {
    height: 100%;
    overflow: hidden;
    overscroll-behavior: none;
  }

  .rider-app {
    min-height: 100vh;
    min-height: 100dvh;
    background: #edf5f2;
  }

  .rider-app .shell {
    width: 100%;
    max-width: none;
    padding: 0;
  }

  .rider-app .topbar {
    position: fixed;
    z-index: 50;
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    margin: 0;
    padding: calc(10px + env(safe-area-inset-top)) 16px 10px;
    background: linear-gradient(180deg, rgba(237, 245, 242, .98) 0%, rgba(237, 245, 242, .86) 62%, rgba(237, 245, 242, 0) 100%);
    pointer-events: none;
  }

  .rider-app .topbar > * {
    pointer-events: auto;
  }

  .rider-app .brand-logo {
    width: 112px;
    height: auto;
  }

  .rider-app:not(.guest-mode) .account-bar {
    position: fixed;
    z-index: 51;
    top: calc(12px + env(safe-area-inset-top));
    right: 16px;
    left: auto;
    width: auto;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    pointer-events: none;
  }

  .rider-app:not(.guest-mode) .account-bar > div,
  .rider-app:not(.guest-mode) .account-bar .auth-form {
    display: none;
  }

  .rider-app:not(.guest-mode) .account-bar #signout:not(.hidden) {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid rgba(18, 51, 47, .12);
    border-radius: 999px;
    background: rgba(255, 255, 255, .96);
    color: #12332f;
    box-shadow: 0 8px 24px rgba(18, 51, 47, .1);
    pointer-events: auto;
  }

  .rider-map-layout {
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: calc(72px + env(safe-area-inset-bottom));
    left: 0;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(220px, 1fr) auto;
    gap: 0;
    width: 100%;
    height: auto;
    min-height: 0;
    overflow: hidden;
    background: #edf5f2;
  }

  .rider-unified-map {
    position: relative;
    z-index: 1;
    inset: auto;
    order: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: #edf5f2;
    box-shadow: none;
    overflow: hidden;
  }

  .rider-unified-map .map-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .rider-unified-map .map-chip {
    top: calc(76px + env(safe-area-inset-top));
    right: auto;
    left: 16px;
    max-width: calc(100% - 32px);
    padding: 9px 12px;
    border: 1px solid rgba(18, 51, 47, .09);
    border-radius: 14px;
    background: rgba(255, 255, 255, .94);
    color: #294c46;
    box-shadow: 0 8px 24px rgba(18, 51, 47, .1);
    font-size: 11px;
    font-weight: 750;
    backdrop-filter: blur(16px);
  }

  .map-controls {
    top: calc(122px + env(safe-area-inset-top));
    right: 16px;
    left: 16px;
    align-items: center;
  }

  .map-filter {
    gap: 2px;
    padding: 4px;
    border: 1px solid rgba(18, 51, 47, .08);
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 8px 24px rgba(18, 51, 47, .1);
  }

  .map-filter button {
    min-height: 36px;
    padding: 0 13px;
    font-size: 12px;
  }

  .map-filter button.active {
    background: #0e5148;
    color: #fff;
  }

  .map-locate {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(18, 51, 47, .08);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 8px 24px rgba(18, 51, 47, .1);
  }

  .ride-sheet {
    position: relative;
    z-index: 20;
    right: auto;
    bottom: auto;
    left: auto;
    order: 1;
    align-self: end;
    width: 100%;
    max-height: none;
    margin: 0;
    padding: 14px 16px 14px;
    border: 0;
    border-radius: 28px 28px 0 0;
    background: rgba(255, 255, 255, .99);
    box-shadow: 0 -12px 36px rgba(18, 51, 47, .13);
    overflow: visible;
    overscroll-behavior: none;
  }

  .ride-sheet.collapsed {
    max-height: none;
    padding-bottom: 14px;
    overflow: visible;
  }

  .ride-sheet > .eyebrow,
  .ride-sheet > h1,
  .ride-sheet > .lede,
  .ride-sheet .sheet-handle,
  .ride-sheet .mobility-legend {
    display: none !important;
  }

  .service-picker {
    gap: 8px;
    margin: 0 0 10px;
  }

  .service-choice,
  .service-choice.selected {
    grid-template-columns: 36px minmax(0, 1fr);
    min-height: 52px;
    padding: 7px 9px;
    border-width: 1px;
    border-radius: 16px;
  }

  .service-choice-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }

  .service-choice strong {
    font-size: 14px;
  }

  .service-choice small {
    margin-top: 0;
    font-size: 10px;
  }

  .booking-mode .field-stack {
    gap: 7px;
    margin: 0 0 10px;
  }

  .ride-sheet .input-wrap {
    grid-template-columns: 20px 1fr;
    gap: 8px;
    padding: 3px 11px;
    border-radius: 14px;
  }

  .ride-sheet .input-wrap input {
    padding: 9px 0;
    font-size: 14px;
  }

  .ride-sheet .suggestions {
    top: auto;
    bottom: calc(100% + 6px);
    max-height: min(240px, 34dvh);
    overflow: auto;
  }

  .ride-sheet .vehicle-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin: 0 0 10px;
  }

  .ride-sheet .vehicle,
  .ride-sheet .vehicle.selected {
    grid-template-columns: 34px minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 1px 7px;
    min-width: 0;
    min-height: 58px;
    padding: 7px;
    border-width: 1px;
    border-radius: 14px;
  }

  .ride-sheet .vehicle-icon {
    grid-row: 1 / 3;
    width: 34px;
    height: 34px;
    border-radius: 11px;
  }

  .ride-sheet .vehicle > span:nth-child(2) {
    min-width: 0;
  }

  .ride-sheet .vehicle strong {
    overflow: hidden;
    font-size: 12px;
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .ride-sheet .vehicle small {
    display: none;
  }

  .ride-sheet .vehicle-price {
    grid-column: 2;
    justify-self: start;
    overflow: hidden;
    max-width: 100%;
    color: #294c46;
    font-size: 10px;
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .ride-sheet .primary.full-width {
    min-height: 48px;
    padding: 11px 14px;
    border-radius: 15px;
  }

  .ride-sheet .form-note {
    margin: 6px 0 0;
    font-size: 10px;
    line-height: 1.35;
  }

  .scooter-code-wrap {
    margin-bottom: 7px;
  }

  .scooter-nearby-heading {
    margin: 7px 0 6px;
  }

  .scooter-nearby-heading strong {
    font-size: 11px;
  }

  .scooter-nearby-heading span {
    font-size: 9px;
  }

  .ride-sheet .scooter-nearby-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    max-height: none;
    margin-bottom: 8px;
    overflow: visible;
  }

  .ride-sheet .nearby-scooter {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 6px;
    min-width: 0;
    min-height: 52px;
    padding: 6px;
    border-radius: 12px;
  }

  .ride-sheet .nearby-scooter > span:last-child {
    display: none;
  }

  .ride-sheet .nearby-scooter-icon {
    width: 30px;
    height: 30px;
    font-size: 11px;
  }

  .ride-sheet .nearby-scooter strong,
  .ride-sheet .nearby-scooter small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .ride-sheet .nearby-scooter strong {
    font-size: 10px;
  }

  .ride-sheet .nearby-scooter small {
    margin-top: 0;
    font-size: 8px;
  }

  .ride-sheet .mobility-empty {
    grid-column: 1 / -1;
    padding: 9px;
    font-size: 10px;
  }

  .ride-sheet .scooter-payment-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 3px 8px;
    margin: 7px 0;
    padding: 8px 10px;
    border-radius: 13px;
  }

  .ride-sheet .scooter-payment-card > p:first-child,
  .ride-sheet #scooter-payment-consent,
  .ride-sheet #scooter-payment-element:empty,
  .ride-sheet #scooter-payment-outstanding:empty {
    display: none;
  }

  .ride-sheet .scooter-payment-card > strong {
    grid-column: 1;
    font-size: 12px;
    line-height: 1.2;
  }

  .ride-sheet #scooter-payment-message {
    grid-column: 1;
    margin: 0;
    font-size: 9px;
  }

  .ride-sheet #setup-scooter-payment {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
    padding: 8px 9px;
    font-size: 9px;
  }

  .ride-sheet #payment-section:not(.hidden),
  .ride-sheet .scooter-payment-card:has(#scooter-payment-element:not(:empty)),
  .ride-sheet .scooter-payment-card:has(#scooter-payment-outstanding:not(:empty)) {
    position: fixed;
    z-index: 90;
    top: calc(72px + env(safe-area-inset-top));
    right: 16px;
    bottom: calc(88px + env(safe-area-inset-bottom));
    left: 16px;
    display: block;
    margin: 0;
    padding: 18px;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(18, 51, 47, .24);
    overflow: auto;
    overscroll-behavior: contain;
  }

  .ride-sheet .scooter-payment-card:has(#scooter-payment-element:not(:empty)) #scooter-payment-consent,
  .ride-sheet .scooter-payment-card:has(#scooter-payment-outstanding:not(:empty)) #scooter-payment-consent {
    display: block;
  }

  .ride-sheet .scooter-payment-card:has(#scooter-payment-element:not(:empty)) #setup-scooter-payment,
  .ride-sheet .scooter-payment-card:has(#scooter-payment-outstanding:not(:empty)) #setup-scooter-payment {
    margin-top: 12px;
  }

  .rider-nav {
    position: fixed;
    z-index: 40;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    max-width: none;
    min-height: calc(72px + env(safe-area-inset-bottom));
    margin: 0;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    justify-content: space-around;
    gap: 4px;
    border: 0;
    border-top: 1px solid rgba(18, 51, 47, .08);
    border-radius: 0;
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 -8px 28px rgba(18, 51, 47, .09);
    backdrop-filter: blur(20px);
  }

  .rider-nav button {
    min-width: 0;
    min-height: 52px;
    flex: 1;
    padding: 0 8px;
    border-radius: 16px;
    font-size: 12px;
  }

  .rider-nav button.active,
  .rider-nav button[aria-current="page"] {
    background: #e7f6f3;
    color: #007f73;
  }

  .rider-app .history-panel:not(.customer-view-inactive) {
    margin: calc(78px + env(safe-area-inset-top)) 12px calc(92px + env(safe-area-inset-bottom));
    padding: 20px;
    border-radius: 24px;
  }

  .wallet-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) and (max-height: 700px) {
  .rider-map-layout {
    grid-template-rows: minmax(120px, 1fr) auto;
  }

  .ride-sheet {
    padding: 8px 12px;
    border-radius: 20px 20px 0 0;
  }

  .service-picker {
    gap: 6px;
    margin-bottom: 6px;
  }

  .service-choice,
  .service-choice.selected {
    grid-template-columns: 30px minmax(0, 1fr);
    min-height: 42px;
    padding: 5px 7px;
    border-radius: 13px;
  }

  .service-choice-icon {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    font-size: 14px;
  }

  .service-choice small,
  .ride-sheet .form-note,
  .scooter-nearby-heading span {
    display: none;
  }

  .booking-mode .field-stack {
    gap: 5px;
    margin-bottom: 6px;
  }

  .ride-sheet .input-wrap {
    padding-block: 1px;
  }

  .ride-sheet .input-wrap input {
    padding: 6px 0;
    font-size: 13px;
  }

  .ride-sheet .vehicle-list {
    gap: 5px;
    margin-bottom: 6px;
  }

  .ride-sheet .vehicle,
  .ride-sheet .vehicle.selected {
    grid-template-columns: 28px minmax(0, 1fr);
    min-height: 44px;
    padding: 5px;
  }

  .ride-sheet .vehicle-icon {
    width: 28px;
    height: 28px;
  }

  .ride-sheet .primary.full-width {
    min-height: 40px;
    padding: 8px 11px;
  }

  .scooter-nearby-heading {
    margin: 4px 0;
  }

  .ride-sheet .scooter-nearby-list {
    gap: 4px;
    margin-bottom: 5px;
  }

  .ride-sheet .nearby-scooter {
    grid-template-columns: 24px minmax(0, 1fr);
    min-height: 40px;
    padding: 4px;
  }

  .ride-sheet .nearby-scooter-icon {
    width: 24px;
    height: 24px;
  }

  .ride-sheet .scooter-payment-card {
    margin: 5px 0;
    padding: 6px 8px;
  }

  .ride-sheet #scooter-payment-message {
    display: none;
  }
}
