:root {
    --andar-navy: #071f49;
    --andar-ink: #172033;
    --andar-muted: #667085;
    --andar-line: #e4e8ef;
    --andar-soft: #f4f6f8;
    --andar-orange: #ffc400;
    --andar-orange-soft: #fff7d6;
    --andar-blue: #1976ff;
    --andar-blue-soft: #edf5ff;
    --andar-green: #10a65a;
    --andar-green-soft: #e9f9f0;
    --andar-red: #e22d16;
    --andar-white: #ffffff;
    --andar-shadow: 0 5px 12px rgba(16, 24, 40, 0.06);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

@font-face {
    font-family: Poppins;
    src: url("../fonts/Poppins_400Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Poppins;
    src: url("../fonts/Poppins_600SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Poppins;
    src: url("../fonts/Poppins_700Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Poppins;
    src: url("../fonts/Poppins_800ExtraBold.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Poppins;
    src: url("../fonts/Poppins_900Black.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Ionicons;
    src: url("../fonts/Ionicons.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

.ion {
    display: inline-block;
    font-family: Ionicons;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    text-transform: none;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
    margin: 0;
}

body {
    color: var(--andar-ink);
    background: var(--andar-white);
    font-family: Poppins, Arial, Helvetica, sans-serif;
}

body.map-expanded {
    overflow: hidden;
}

.app-frame {
    position: relative;
    width: 100%;
    max-width: 520px;
    min-height: 100vh;
    margin: 0 auto;
    overflow: hidden;
    background: var(--andar-white);
}

.app-frame.auth-frame {
    max-width: 100%;
}

.app-modal-dimmer {
    position: fixed;
    left: 50%;
    top: 0;
    bottom: 0;
    z-index: 900;
    width: 100%;
    max-width: 520px;
    background: rgba(7, 31, 73, 0.45);
    pointer-events: none;
    transform: translateX(-50%);
}

.app-modal-dimmer[hidden] {
    display: none;
}

.screen-wrap {
    min-height: 100vh;
    background: var(--andar-soft);
}

.screen {
    min-height: 100vh;
    padding: 14px 18px 24px;
}

.app-screen {
    padding-top: calc(80px + env(safe-area-inset-top, 0px));
}

.screen-compact {
    padding-left: 24px;
    padding-right: 24px;
}

.screen.with-tabs {
    padding-bottom: calc(144px + env(safe-area-inset-bottom, 0px));
}

.pull-refresh-content {
    position: relative;
    z-index: auto;
}

.pull-refresh-content-pulling {
    will-change: transform;
}

.pull-refresh-content-settling {
    transition: transform 180ms ease;
}

.pull-refresh {
    --pull-refresh-offset: -52px;
    --pull-refresh-progress: 0;
    --pull-refresh-rotation: 0deg;
    position: fixed;
    left: 50%;
    top: calc(78px + env(safe-area-inset-top, 0px));
    z-index: 119;
    min-width: 138px;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 13px;
    border: 1px solid rgba(211, 219, 232, 0.92);
    border-radius: 999px;
    color: var(--andar-navy);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.14);
    opacity: var(--pull-refresh-progress);
    pointer-events: none;
    transform: translate(-50%, var(--pull-refresh-offset));
    transition: opacity 120ms ease, transform 180ms ease;
}

.pull-refresh-active {
    transition: opacity 80ms ease;
}

.pull-refresh-free-top {
    top: calc(18px + env(safe-area-inset-top, 0px));
    z-index: 180;
}

.pull-refresh-spinner {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    border: 2px solid rgba(7, 31, 73, 0.22);
    border-top-color: var(--andar-orange);
    border-radius: 50%;
    transform: rotate(var(--pull-refresh-rotation));
}

.pull-refresh-label {
    font-size: 11px;
    line-height: 14px;
    font-weight: 900;
    white-space: nowrap;
}

.pull-refresh-ready .pull-refresh-spinner,
.pull-refresh-loading .pull-refresh-spinner {
    animation: pull-refresh-spin 0.7s linear infinite;
}

.pull-refresh-loading {
    opacity: 1;
}

@keyframes pull-refresh-spin {
    to {
        transform: rotate(360deg);
    }
}

.home-header,
.flow-header {
    position: fixed;
    left: 50%;
    top: 0;
    z-index: 120;
    width: 100%;
    max-width: 520px;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0;
    padding: calc(8px + env(safe-area-inset-top)) 18px 8px;
    border-bottom: 1px solid var(--andar-line);
    background: var(--andar-white);
    box-shadow: var(--andar-shadow);
    transform: translateX(-50%);
}

.header-side-space,
.role-switch-form,
.icon-button {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
}

.role-switch-form {
    margin: 0;
}

.role-switch-icon {
    width: 26px;
    height: 26px;
    display: block;
    stroke: currentColor;
    stroke-width: 2.05;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.brand {
    --andar-logo-width: 104px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 104px;
    text-decoration: none;
}

.brand img {
    width: 104px;
    height: auto;
    display: block;
}

.brand-assistance {
    width: var(--andar-logo-width);
    color: var(--andar-navy);
    font-size: 9px;
    line-height: 12px;
    font-weight: 700;
    letter-spacing: 5.3px;
    text-align: center;
    white-space: nowrap;
}

.flow-title {
    margin: 0;
    color: var(--andar-navy);
    font-size: 17px;
    font-weight: 900;
}

.icon-button,
.support-button,
.step-badge,
.nav-item,
.scanner-button {
    border: 0;
    cursor: pointer;
    font-family: inherit;
}

.ion,
.icon-button.ion,
.scanner-button.ion {
    font-family: Ionicons !important;
}

.icon-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--andar-line);
    border-radius: 12px;
    color: var(--andar-navy);
    background: var(--andar-white);
    box-shadow: var(--andar-shadow);
    font-size: 22px;
    text-decoration: none;
}

.notification-badge {
    position: absolute;
    top: 5px;
    right: 4px;
    min-width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    border: 2px solid var(--andar-white);
    border-radius: 999px;
    color: var(--andar-white);
    background: #ef4444;
    font-family: Poppins, Arial, sans-serif;
    font-size: 10px;
    font-weight: 900;
    line-height: 1;
}

.step-badge {
    min-width: 46px;
    min-height: 24px;
    padding: 5px 10px 0;
    border-radius: 999px;
    color: var(--andar-orange);
    background: var(--andar-orange-soft);
    text-align: center;
    font-size: 10px;
    font-weight: 900;
}

.flow-step-menu {
    position: relative;
    flex: 0 0 auto;
}

.flow-step-menu[open] {
    z-index: 140;
}

.flow-step-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    list-style: none;
    padding-top: 4px;
}

.flow-step-toggle::-webkit-details-marker {
    display: none;
}

.flow-step-toggle .ion {
    font-size: 11px;
    transition: transform 160ms ease;
}

.flow-step-menu[open] .flow-step-toggle .ion {
    transform: rotate(180deg);
}

.flow-step-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(280px, calc(100vw - 32px));
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    border: 1px solid var(--andar-line);
    border-radius: 12px;
    background: var(--andar-white);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.16);
}

.flow-step-panel::before {
    content: "";
    position: absolute;
    top: -6px;
    right: 18px;
    width: 10px;
    height: 10px;
    border-left: 1px solid var(--andar-line);
    border-top: 1px solid var(--andar-line);
    background: var(--andar-white);
    transform: rotate(45deg);
}

.flow-step-link {
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    border-radius: 9px;
    color: var(--andar-navy);
    text-decoration: none;
}

.flow-step-link:hover,
.flow-step-current {
    background: #f4f8ff;
}

.flow-step-number {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--andar-muted);
    background: var(--andar-soft);
    font-size: 11px;
    font-weight: 900;
}

.flow-step-done .flow-step-number {
    color: var(--andar-white);
    background: var(--andar-green);
}

.flow-step-current .flow-step-number {
    color: #111827;
    background: var(--andar-orange);
}

.flow-step-copy {
    min-width: 0;
    flex: 1;
}

.flow-step-copy strong,
.flow-step-copy em {
    display: block;
}

.flow-step-copy strong {
    overflow: hidden;
    color: var(--andar-navy);
    font-size: 11px;
    line-height: 15px;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.flow-step-copy em {
    color: var(--andar-muted);
    font-size: 10px;
    line-height: 14px;
    font-style: normal;
    font-weight: 800;
}

.flow-step-done .flow-step-copy em {
    color: var(--andar-green);
}

.flow-step-current .flow-step-copy em {
    color: #b47a00;
}

.support-button {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0 11px;
    border-radius: 999px;
    color: var(--andar-navy);
    background: var(--andar-orange-soft);
    font-size: 11px;
    font-weight: 900;
}

.placeholder-card {
    padding: 18px;
    border: 1px solid var(--andar-line);
    border-radius: 8px;
    background: var(--andar-white);
    box-shadow: var(--andar-shadow);
}

.placeholder-title {
    margin: 0 0 8px;
    color: var(--andar-navy);
    font-size: 24px;
    line-height: 29px;
    font-weight: 900;
}

.placeholder-copy {
    margin: 0;
    color: var(--andar-muted);
    font-size: 12px;
    line-height: 17px;
    font-weight: 700;
}

.bottom-nav {
    position: fixed;
    left: 50%;
    right: auto;
    bottom: 0;
    z-index: 110;
    width: 100%;
    max-width: 520px;
    min-height: calc(104px + env(safe-area-inset-bottom, 0px));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
    background: transparent;
    transform: translateX(-50%);
}

.nav-dock {
    position: relative;
    z-index: 22;
    width: 100%;
    height: calc(82px + env(safe-area-inset-bottom, 0px));
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 62px minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 0;
    padding: 9px 14px calc(9px + env(safe-area-inset-bottom, 0px));
    border: 0;
    border-top: 1px solid rgba(211, 219, 232, 0.95);
    border-radius: 26px 26px 0 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 -12px 28px rgba(15, 23, 42, 0.14);
    backdrop-filter: blur(14px);
}

.nav-dock::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -32px;
    z-index: 0;
    width: 70px;
    height: 70px;
    border: 1px solid rgba(211, 219, 232, 0.95);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 -4px 12px rgba(15, 23, 42, 0.08);
    transform: translateX(-50%);
}

.nav-scan-slot {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.nav-side {
    flex: 1;
    height: 64px;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 7px 6px;
}

.nav-side-left {
    margin-right: 20px;
    border-radius: 22px;
}

.nav-side-right {
    margin-left: 20px;
    border-radius: 22px;
}

.nav-center-bridge {
    display: none;
}

.nav-item {
    position: relative;
    z-index: 2;
    min-width: 0;
    min-height: 56px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 6px 2px 5px;
    border-radius: 18px;
    color: #8b929d;
    background: transparent;
    text-decoration: none;
    font-size: 10px;
    line-height: 13px;
    font-weight: 800;
    overflow: hidden;
}

.nav-item .ion {
    width: 34px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #202938;
    font-size: 20px;
}

.nav-item.active {
    color: var(--andar-navy);
    font-weight: 900;
}

.nav-item.active .ion {
    color: var(--andar-navy);
    background: #edf5ff;
}

.nav-item.active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 2px;
    width: 18px;
    height: 3px;
    border-radius: 999px;
    background: var(--andar-orange);
    transform: translateX(-50%);
}

.nav-item span:last-child {
    max-width: 100%;
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.scanner-button {
    position: absolute;
    left: 50%;
    bottom: calc(48px + env(safe-area-inset-bottom, 0px));
    z-index: 30;
    width: 62px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 0 -31px;
    border: 4px solid var(--andar-white);
    border-radius: 50%;
    color: var(--andar-white);
    background: #202124;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.24);
    text-decoration: none;
    font-size: 27px;
}

.scanner-button-timeout,
.scanner-button[aria-label="Time out truck"] {
    background-color: var(--andar-red);
    background-image: linear-gradient(135deg, var(--andar-red) 0%, #ff7a1a 100%);
    box-shadow: 0 10px 22px rgba(226, 45, 22, 0.28);
}

.scanner-button-muted {
    background: var(--andar-navy);
}

.install-button {
    position: fixed;
    right: 14px;
    bottom: calc(110px + env(safe-area-inset-bottom, 0px));
    z-index: 50;
    min-height: 38px;
    padding: 0 14px;
    border: 0;
    border-radius: 999px;
    color: #111827;
    background: var(--andar-orange);
    box-shadow: var(--andar-shadow);
    font-family: inherit;
    font-size: 12px;
    font-weight: 900;
}

.auth-screen {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #f5f7fb;
}

.auth-top-glow,
.auth-bottom-glow {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.auth-top-glow {
    left: -82px;
    top: -92px;
    width: 292px;
    height: 292px;
    background: rgba(255, 196, 0, 0.26);
}

.auth-bottom-glow {
    right: -96px;
    bottom: -116px;
    width: 250px;
    height: 250px;
    background: rgba(7, 31, 73, 0.06);
}

.auth-scroll {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 22px 20px 42px;
}

.login-simple-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 12px;
}

.login-logo-badge {
    --andar-logo-width: 162px;
    min-width: 188px;
    min-height: 58px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 9px;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 17px;
    background: var(--andar-white);
    box-shadow: 0 5px 18px rgba(16, 24, 40, 0.1);
}

.login-logo-badge img {
    width: 162px;
    height: auto;
    display: block;
}

.login-logo-subline {
    width: var(--andar-logo-width);
    color: #111827;
    font-size: 14px;
    line-height: 19px;
    font-weight: 700;
    letter-spacing: 9px;
    text-align: center;
    white-space: nowrap;
}

.login-header-eyebrow {
    align-self: center;
    padding: 6px 13px;
    margin-bottom: 8px;
    border-radius: 999px;
    color: #111827;
    background: rgba(255, 196, 0, 0.34);
    font-size: 11px;
    line-height: 14px;
    font-weight: 900;
}

.login-header-title {
    margin: 0;
    color: #111827;
    font-size: 29px;
    line-height: 34px;
    text-align: center;
    font-weight: 900;
}

.login-header-copy {
    max-width: 330px;
    margin: 5px 0 0;
    color: var(--andar-muted);
    text-align: center;
    font-size: 12px;
    line-height: 17px;
    font-weight: 700;
}

.login-feature-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.login-feature-pill {
    min-height: 29px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0 11px;
    border: 1px solid rgba(255, 196, 0, 0.34);
    border-radius: 999px;
    color: #111827;
    background: rgba(255, 255, 255, 0.76);
    font-size: 10px;
    line-height: 13px;
    font-weight: 900;
}

.login-form-card {
    position: relative;
    width: 100%;
    max-width: 430px;
    align-self: center;
    margin-top: 35px;
    padding: 58px 18px 17px;
    border: 1px solid rgba(226, 232, 240, 0.86);
    border-radius: 25px;
    background: var(--andar-white);
    box-shadow: 0 10px 24px rgba(16, 24, 40, 0.11);
}

.login-card-accent {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 4px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    background: var(--andar-orange);
}

.login-icon-badge {
    position: absolute;
    top: -28px;
    left: 50%;
    width: 66px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -33px;
    border: 4px solid var(--andar-white);
    border-radius: 21px;
    background: var(--andar-orange);
    box-shadow: 0 5px 14px rgba(224, 169, 0, 0.24);
}

.login-icon-badge img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.login-title,
.login-subtitle {
    text-align: center;
}

.login-title {
    margin: 0;
    color: #111827;
    font-size: 24px;
    line-height: 29px;
    font-weight: 900;
}

.login-subtitle {
    margin: 6px 0 15px;
    color: var(--andar-muted);
    font-size: 12px;
    line-height: 17px;
    font-weight: 700;
}

.login-form-stack,
.register-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.login-field-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin: 0;
}

.login-label {
    color: #111827;
    font-size: 11px;
    line-height: 14px;
    font-weight: 900;
}

.login-input-shell,
.driver-field {
    min-height: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 11px;
    border: 1px solid #dfe5ee;
    border-radius: 15px;
    background: #fbfcff;
}

.login-input-shell:focus-within,
.driver-field:focus-within {
    border-color: #ffc400;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 196, 0, 0.18);
}

.login-input-icon,
.field-icon {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #111827;
    background: #f1f5f9;
}

.login-input,
.driver-field input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    color: #111827;
    background: transparent;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    appearance: none;
    -webkit-appearance: none;
}

.login-input::selection,
.driver-field input::selection {
    color: #111827;
    background: rgba(255, 196, 0, 0.32);
}

.login-input:-webkit-autofill,
.login-input:-webkit-autofill:hover,
.login-input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px #ffffff inset;
    -webkit-text-fill-color: #111827;
    caret-color: #111827;
    transition: background-color 9999s ease-out;
}

.login-role-select-shell {
    position: relative;
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    min-height: 54px;
    cursor: pointer;
}

.login-role-toggle {
    min-width: 0;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: #fff4c2;
    border: 1px solid rgba(255, 196, 0, 0.55);
    border-radius: 12px;
    padding: 0 5px 0 13px;
    color: #111827;
    font-family: inherit;
    cursor: pointer;
}

.login-role-selected {
    min-width: 0;
    display: block;
    font-size: 14px;
    line-height: 18px;
    font-weight: 900;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    pointer-events: none;
}

.login-role-select {
    display: none;
}

.login-role-menu {
    position: absolute;
    top: calc(100% + 7px);
    right: 0;
    left: 51px;
    z-index: 20;
    display: none;
    padding: 6px;
    border: 1px solid #dfe5ee;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.18);
}

.login-role-select-shell-open .login-role-menu {
    display: grid;
    gap: 5px;
}

.login-role-menu-option {
    width: 100%;
    min-height: 40px;
    border: 0;
    border-radius: 10px;
    padding: 0 12px;
    color: #111827;
    background: transparent;
    font-family: inherit;
    font-size: 14px;
    line-height: 18px;
    font-weight: 900;
    text-align: left;
    cursor: pointer;
}

.login-role-menu-option:hover,
.login-role-menu-option:focus {
    outline: 0;
    background: #f8fafc;
}

.login-role-menu-option-on {
    background: #ffc400;
    box-shadow: 0 7px 16px rgba(255, 196, 0, 0.24);
}

.login-select-chevron {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: #111827;
    pointer-events: none;
    z-index: 1;
}

.login-select-chevron::before {
    content: "";
    width: 0;
    height: 0;
    border-top: 6px solid #ffc400;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
}

.login-role-select-shell-open .login-select-chevron::before {
    transform: rotate(180deg);
}

.login-input::placeholder,
.driver-field input::placeholder {
    color: #98a2b3;
}

.login-eye-button,
.driver-field-button {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    border: 0;
    color: #111827;
    background: transparent;
    cursor: pointer;
}

.login-options-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 1px;
}

.check-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: #344054;
    font-size: 11px;
    line-height: 14px;
    font-weight: 700;
    cursor: pointer;
}

.check-box {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d5dbe6;
    border-radius: 5px;
    background: var(--andar-white);
}

.check-box .ion {
    display: none;
    font-size: 12px;
    color: #111827;
}

.check-row input:checked + .check-box {
    border-color: var(--andar-orange);
    background: var(--andar-orange);
}

.check-row input:checked + .check-box .ion {
    display: inline-block;
}

.login-reset-text {
    border: 0;
    padding: 0;
    color: #111827;
    background: transparent;
    font-family: inherit;
    font-size: 11px;
    line-height: 14px;
    font-weight: 900;
    cursor: pointer;
}

.login-button,
.primary-button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 15px;
    color: #111827;
    background: var(--andar-orange);
    box-shadow: 0 5px 14px rgba(224, 169, 0, 0.22);
    font-family: inherit;
    font-size: 14px;
    line-height: 18px;
    font-weight: 900;
    cursor: pointer;
    text-decoration: none;
}

.login-button,
.primary-button,
.secondary-button {
    position: relative;
}

.button-loading {
    pointer-events: none;
    opacity: 0.84;
}

.button-loading::before {
    content: "";
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: button-loading-spin 0.7s linear infinite;
}

.button-loading .ion {
    display: none;
}

button.button-loading,
button.button-loading:disabled {
    cursor: wait;
}

@keyframes button-loading-spin {
    to {
        transform: rotate(360deg);
    }
}

.swipe-action {
    --swipe-x: 0px;
    position: relative;
    width: 100%;
    height: 64px;
    overflow: hidden;
    margin-top: 22px;
    border: 1px solid rgba(224, 169, 0, 0.46);
    border-radius: 999px;
    color: #8a5a00;
    background: var(--andar-white);
    box-shadow: 0 5px 12px rgba(16, 24, 40, 0.08);
    cursor: grab;
    touch-action: none;
    user-select: none;
}

.swipe-action:focus {
    outline: 3px solid rgba(255, 196, 0, 0.28);
    outline-offset: 2px;
}

.swipe-action-dragging {
    cursor: grabbing;
}

.swipe-action-fill {
    position: absolute;
    left: 7px;
    top: 7px;
    bottom: 7px;
    width: calc(var(--swipe-x) + 50px);
    border-radius: 999px;
    background: var(--andar-orange-soft);
    transition: width 160ms ease;
}

.swipe-action::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(7, 31, 73, 0.04);
    pointer-events: none;
}

.swipe-action-handle {
    position: absolute;
    left: 7px;
    top: 7px;
    z-index: 3;
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    background: var(--andar-orange);
    box-shadow: 0 3px 8px rgba(224, 169, 0, 0.24);
    transform: translateX(var(--swipe-x));
    transition: transform 160ms ease;
}

.swipe-action-handle .ion {
    color: #111111;
    font-size: 26px;
}

.swipe-action-copy {
    position: absolute;
    left: 70px;
    right: 26px;
    top: 50%;
    z-index: 2;
    text-align: center;
    transform: translateY(-50%);
    pointer-events: none;
}

.swipe-action-label {
    color: #8a5a00;
    font-size: 13px;
    line-height: 17px;
    font-weight: 900;
}

.swipe-action-complete {
    position: absolute;
    left: 70px;
    right: 26px;
    top: 50%;
    z-index: 2;
    opacity: 0;
    color: var(--andar-green);
    text-align: center;
    transform: translateY(-50%);
    font-size: 13px;
    line-height: 17px;
    font-weight: 900;
    pointer-events: none;
}

.swipe-action-dragging .swipe-action-fill,
.swipe-action-dragging .swipe-action-handle {
    transition: none;
}

.swipe-action-done {
    cursor: default;
}

.swipe-action-done .swipe-action-copy {
    opacity: 0;
}

.swipe-action-done .swipe-action-complete {
    opacity: 1;
}

.swipe-action-done .swipe-action-fill {
    background: var(--andar-orange-soft);
}

.swipe-action-done .swipe-action-handle {
    background: var(--andar-orange);
    box-shadow: 0 4px 10px rgba(224, 169, 0, 0.24);
}

.login-create-copy,
.switch-text {
    margin: 1px 0 0;
    color: #344054;
    text-align: center;
    font-size: 12px;
    line-height: 17px;
    font-weight: 700;
}

.login-create-link,
.link-text {
    color: #111827;
    font-weight: 900;
    text-decoration: none;
}

.toast {
    position: fixed;
    left: 18px;
    right: 18px;
    bottom: calc(100px + env(safe-area-inset-bottom, 0px));
    z-index: 260;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 10px;
    color: var(--andar-white);
    background: var(--andar-navy);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.22);
    text-align: center;
    font-size: 13px;
    line-height: 18px;
    font-weight: 800;
    animation: toast-in 180ms ease-out;
}

.toast-success {
    background: var(--andar-green);
}

.toast-error {
    background: var(--andar-red);
}

.toast-info {
    background: var(--andar-navy);
}

.toast-payment-success {
    top: calc(14px + env(safe-area-inset-top, 0px));
    bottom: auto;
    background: var(--andar-green);
    animation: toast-drop-top-in 220ms ease-out;
}

.toast-payment-success.toast-leaving {
    animation: toast-fade-top-out 220ms ease-in forwards;
}

.toast-leaving {
    animation: toast-out 180ms ease-in forwards;
}

@keyframes toast-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes toast-out {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(10px);
    }
}

@keyframes toast-drop-top-in {
    from {
        opacity: 0;
        transform: translateY(-18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes toast-fade-top-out {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-18px);
    }
}

.register-screen {
    min-height: 100vh;
}

.register-brand {
    display: flex;
    justify-content: center;
    margin: 12px 0 8px;
}

.register-brand-logo {
    --andar-logo-width: 148px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}

.register-brand-logo img {
    width: 148px;
    height: auto;
}

.register-brand-logo span {
    width: var(--andar-logo-width);
    color: var(--andar-navy);
    font-size: 13px;
    line-height: 18px;
    font-weight: 700;
    letter-spacing: 7.7px;
    text-align: center;
    white-space: nowrap;
}

.register-title {
    margin: 0 0 5px;
    color: var(--andar-navy);
    font-size: 26px;
    line-height: 29px;
    font-weight: 900;
}

.register-subhead {
    margin: 0 0 14px;
    color: var(--andar-muted);
    font-size: 12px;
    line-height: 17px;
    font-weight: 700;
}

.register-section-title {
    margin: 6px 0 0;
    color: var(--andar-navy);
    font-size: 13px;
    font-weight: 900;
}

.driver-field {
    min-height: 44px;
    border-radius: 7px;
    background: var(--andar-white);
}

.option-field {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    padding: 13px;
    border: 1px solid #dfe5ee;
    border-radius: 8px;
    background: var(--andar-white);
}

.option-copy {
    flex: 1;
    min-width: 0;
}

.option-label {
    margin-bottom: 8px;
    color: var(--andar-navy);
    font-size: 12px;
    font-weight: 900;
}

.option-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.option-chip {
    margin: 0;
    padding: 7px 10px;
    border-radius: 999px;
    color: var(--andar-navy);
    background: var(--andar-soft);
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
}

.option-chip.option-chip-on,
.option-chip:has(input:checked) {
    color: var(--andar-white);
    background: var(--andar-orange);
}

.upload-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.upload-card {
    width: calc(50% - 5px);
    min-height: 118px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px;
    border: 1px dashed #c6d2e1;
    border-radius: 8px;
    background: var(--andar-white);
    box-shadow: 0 5px 12px rgba(16, 24, 40, 0.025);
}

.completion-proof-grid {
    width: 100%;
    display: block;
}

.completion-proof-grid .upload-card {
    width: 100%;
    min-height: 128px;
}

.upload-card.upload-card-on {
    border-style: solid;
    border-color: #a6e2bd;
    background: var(--andar-green-soft);
}

.upload-card.upload-card-error {
    border-style: solid;
    border-color: #ffb5aa;
    background: #fff1ef;
    box-shadow: 0 0 0 3px rgba(226, 45, 22, 0.08);
}

.upload-card.upload-card-error .proof-icon {
    color: var(--andar-red);
    background: #ffe5e1;
}

.upload-card.upload-card-error .required-proof {
    color: var(--andar-red);
}

.upload-card-disabled {
    opacity: 0.58;
    border-style: solid;
    background: #f3f4f6;
}

.upload-card-disabled .proof-main,
.upload-card-disabled .proof-action {
    cursor: not-allowed;
}

.upload-card-disabled .proof-icon,
.upload-card-disabled .proof-action {
    color: var(--andar-muted);
    background: #eef3fb;
}

.proof-main {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    margin: 0;
    cursor: pointer;
}

.proof-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--andar-orange);
    background: var(--andar-orange-soft);
}

.upload-title {
    color: var(--andar-navy);
    text-align: center;
    font-size: 11px;
    line-height: 15px;
    font-weight: 900;
}

.upload-sub {
    color: var(--andar-muted);
    text-align: center;
    font-size: 10px;
    line-height: 14px;
    font-weight: 700;
}

.proof-preview {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
}

.proof-preview[hidden] {
    display: none;
}

.proof-preview span {
    width: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--andar-line);
    border-radius: 8px;
    background: var(--andar-white);
    aspect-ratio: 4 / 3;
}

.proof-preview img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.upload-card-on .proof-icon {
    display: none;
}

.required-proof {
    color: var(--andar-orange);
    font-size: 9px;
    font-weight: 900;
}

.proof-actions {
    width: 100%;
    display: flex;
    gap: 6px;
    margin-top: 8px;
}

.proof-action {
    flex: 1;
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin: 0;
    padding: 0 6px;
    border: 1px solid #dfe5ee;
    border-radius: 7px;
    color: var(--andar-navy);
    background: var(--andar-white);
    font-size: 10px;
    font-weight: 900;
    cursor: pointer;
}

.tow-hero {
    position: relative;
    height: 150px;
    margin-bottom: 12px;
}

.tow-hero-compact {
    height: 138px;
}

.city-block-one,
.city-block-two,
.flatbed,
.truck-cab,
.truck-wheel-one,
.truck-wheel-two,
.towed-car,
.car-top,
.pin-dot {
    position: absolute;
}

.city-block-one {
    left: 20px;
    top: 40px;
    width: 42px;
    height: 78px;
    opacity: 0.18;
    background: #8395ab;
}

.city-block-two {
    right: 40px;
    top: 30px;
    width: 60px;
    height: 90px;
    opacity: 0.18;
    background: #8395ab;
}

.flatbed {
    left: 40px;
    bottom: 22px;
    width: 194px;
    height: 50px;
    border-radius: 6px;
    background: var(--andar-navy);
}

.truck-cab {
    left: 18px;
    top: -34px;
    width: 70px;
    height: 48px;
    border: 3px solid var(--andar-navy);
    border-radius: 8px;
    background: #f7fbff;
}

.truck-wheel-one,
.truck-wheel-two {
    bottom: -10px;
    width: 25px;
    height: 25px;
    border: 5px solid #d7e0e8;
    border-radius: 13px;
    background: #0d2036;
}

.truck-wheel-one {
    left: 34px;
}

.truck-wheel-two {
    right: 28px;
}

.towed-car {
    right: 22px;
    bottom: 70px;
    width: 122px;
    height: 34px;
    border: 3px solid #203a54;
    border-radius: 20px;
    background: #eff4f8;
}

.car-top {
    left: 28px;
    top: -14px;
    width: 48px;
    height: 18px;
    border: 3px solid #203a54;
    border-bottom: 0;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    background: #dce7f0;
}

.pin-dot {
    left: 34px;
    top: 30px;
    width: 24px;
    height: 24px;
    border-radius: 12px;
    background: #ffb28c;
}

.sheet-scrim {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 240;
    display: none;
    align-items: flex-end;
    justify-content: center;
    padding: 14px;
    background: rgba(7, 31, 73, 0.28);
}

.sheet-scrim.sheet-open {
    display: flex;
}

.sheet {
    width: 100%;
    max-width: 492px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px;
    border-radius: 8px;
    background: var(--andar-white);
}

.sheet-title {
    margin: 0;
    color: var(--andar-navy);
    font-size: 20px;
    font-weight: 900;
}

.sheet-body {
    margin: 0 0 6px;
    color: var(--andar-muted);
    font-size: 14px;
    line-height: 20px;
}

.sheet-close {
    min-height: 52px;
    border: 0;
    border-radius: 10px;
    color: #111827;
    background: var(--andar-orange);
    font-family: inherit;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
}

.stack,
.stack-sm {
    display: flex;
    flex-direction: column;
}

.stack {
    gap: 10px;
}

.stack-sm {
    gap: 8px;
}

.app-card,
.job-list-card,
.metric-card,
.notification-row,
.earning-row,
.remit-banner {
    border: 1px solid var(--andar-line);
    border-radius: 8px;
    background: var(--andar-white);
    box-shadow: var(--andar-shadow);
}

.app-card {
    padding: 14px;
    margin-bottom: 12px;
}

.dashboard-hero {
    padding: 16px;
    margin-bottom: 12px;
    border-radius: 10px;
    color: var(--andar-white);
    background: var(--andar-navy);
}

.profile-row,
.current-vehicle-top,
.detail-hero-top,
.job-top,
.job-list-top,
.job-list-bottom,
.section-header,
.list-header,
.page-top,
.balance-top-row,
.scanner-result-row,
.remit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.avatar {
    position: relative;
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 2px solid var(--andar-white);
    border-radius: 29px;
    background: var(--andar-orange);
}

.avatar img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.avatar-large {
    width: 104px;
    height: 104px;
    flex-basis: 104px;
    border-radius: 52px;
}

.avatar-large img {
    width: 70px;
    height: 70px;
}

.profile-copy {
    flex: 1;
    min-width: 0;
}

.dashboard-hello,
.dashboard-rating,
.hero-stats span,
.current-vehicle-label,
.current-vehicle-meta,
.detail-label,
.route-label,
.job-small,
.job-id,
.job-list-bottom,
.page-top p,
.balance-label,
.balance-sub,
.earning-row em,
.remit-banner em,
.profile-info,
.profile-earnings p,
.notification-row em,
.notification-row small {
    color: var(--andar-muted);
    font-size: 11px;
    line-height: 15px;
    font-weight: 700;
}

.dashboard-name {
    color: var(--andar-white);
    font-size: 20px;
    line-height: 24px;
    font-weight: 900;
}

.dashboard-rating,
.hero-stats span {
    color: #dfe8f7;
}

.assignment-badge {
    width: fit-content;
    max-width: 100%;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 10px;
    line-height: 13px;
    font-weight: 900;
}

.assignment-badge .ion {
    flex: 0 0 auto;
    font-size: 12px;
}

.assignment-badge-online {
    color: #9ef0bd;
    background: rgba(16, 166, 90, 0.18);
}

.assignment-badge-trip {
    color: #b9dcff;
    background: rgba(26, 115, 232, 0.2);
}

.assignment-badge-offline {
    color: #ffe08a;
    background: rgba(255, 196, 0, 0.18);
}

.status-toggle {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 11px;
    border: 0;
    border-radius: 999px;
    color: var(--andar-white);
    font-family: inherit;
    font-size: 11px;
    font-weight: 900;
    cursor: pointer;
}

.status-online {
    background: rgba(16, 166, 90, 0.16);
}

.status-offline {
    background: rgba(255, 196, 0, 0.18);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: var(--andar-green);
}

.status-dot-off {
    background: var(--andar-orange);
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-stats div {
    flex: 1;
}

.hero-stats strong {
    display: block;
    color: var(--andar-white);
    font-size: 13px;
    font-weight: 900;
}

.hero-stats i {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.16);
}

.hero-vehicle-row {
    margin-top: 12px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-vehicle-row .current-vehicle-top {
    align-items: flex-start;
    gap: 14px;
}

.hero-vehicle-row .current-vehicle-icon {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
    border-radius: 12px;
    background: rgba(233, 249, 240, 0.16);
    color: var(--andar-white);
}

.hero-vehicle-row .current-vehicle-empty {
    background: rgba(255, 196, 0, 0.18);
}

.hero-vehicle-row .current-vehicle-label,
.hero-vehicle-row .current-vehicle-meta {
    color: #dfe8f7;
}

.hero-vehicle-row .current-vehicle-title {
    color: var(--andar-white);
}

.hero-vehicle-row .current-vehicle-status {
    flex: 0 0 auto;
    margin-top: 4px;
    background: rgba(16, 166, 90, 0.16);
}

.metric-grid,
.detail-grid,
.summary-row,
.vehicle-photo-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

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

.dashboard-metric-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 2px;
}

.metric-card {
    width: 100%;
    min-height: 86px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 7px;
    border-color: #d8e5f1;
    text-decoration: none;
    box-shadow: none;
}

.dashboard-metric-grid .metric-card {
    min-height: 78px;
    gap: 12px;
    padding: 12px 14px;
    border-color: #dde7f2;
}

.dashboard-metric-grid .metric-icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    border-radius: 12px;
}

.dashboard-metric-grid .metric-copy {
    gap: 3px;
}

.dashboard-metric-grid .metric-label {
    font-size: 10px;
    line-height: 13px;
}

.dashboard-metric-grid .metric-value {
    font-size: 16px;
    line-height: 18px;
}

.dashboard-metric-grid .metric-note {
    font-size: 9px;
    line-height: 12px;
}

.metric-row-cue {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    color: #8aa0ba;
    background: #f4f7fb;
    font-size: 14px;
}

.metric-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.metric-copy {
    min-width: 0;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
}

.metric-navy {
    color: #111111;
    background: #eef3fb;
}

.metric-green {
    color: #111111;
    background: var(--andar-green-soft);
}

.metric-orange {
    color: #111111;
    background: var(--andar-orange-soft);
}

.metric-blue {
    color: #111111;
    background: var(--andar-blue-soft);
}

.metric-label {
    display: flex;
    align-items: center;
    gap: 3px;
    color: var(--andar-muted);
    font-size: 9px;
    font-weight: 800;
    line-height: 11px;
    overflow-wrap: anywhere;
}

.metric-info {
    width: 12px;
    height: 12px;
    flex: 0 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #87a3c2;
    border-radius: 999px;
    color: #4d688b;
    font-size: 8px;
    font-weight: 900;
    line-height: 1;
}

.metric-value {
    color: var(--andar-navy);
    font-size: 14px;
    font-weight: 900;
    line-height: 16px;
    overflow-wrap: anywhere;
}

.metric-note {
    display: flex;
    align-items: flex-start;
    gap: 3px;
    color: #0e8a43;
    font-size: 8.5px;
    font-weight: 800;
    line-height: 10.5px;
    overflow-wrap: anywhere;
}

.metric-trend {
    flex: 0 0 auto;
    margin-top: 3px;
    width: 0;
    height: 0;
    border-right: 3px solid transparent;
    border-bottom: 5px solid currentColor;
    border-left: 3px solid transparent;
}

.section-header,
.list-header {
    margin-bottom: 10px;
}

.section-header h2,
.section-title-main,
.detail-card h2,
.customer-card h2,
.trip-status h2,
.collections-card h2,
.profile-earnings h3 {
    margin: 0 0 8px;
    color: var(--andar-navy);
    font-size: 13px;
    font-weight: 900;
}

.section-title-main {
    margin-top: 20px;
}

.commission-pagination {
    display: grid;
    grid-template-columns: minmax(74px, auto) minmax(0, 1fr) minmax(62px, auto);
    align-items: center;
    gap: 6px;
    width: 100%;
    margin: 12px 0 20px;
    padding: 7px;
    border: 1px solid var(--andar-line);
    border-radius: 8px;
    background: var(--andar-white);
    box-shadow: var(--andar-shadow);
}

.commission-page-button {
    min-width: 0;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 7px 7px;
    border-radius: 6px;
    color: var(--andar-navy);
    background: #f8fafc;
    font-size: 11px;
    font-weight: 900;
    line-height: 14px;
    text-decoration: none;
    white-space: nowrap;
}

.commission-page-button:last-child {
    justify-self: end;
}

.commission-page-button.disabled {
    color: var(--andar-muted);
    background: transparent;
    opacity: 0.58;
    pointer-events: none;
}

.commission-page-status {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--andar-muted);
    text-align: center;
    line-height: 15px;
    white-space: nowrap;
}

.commission-page-status strong {
    color: var(--andar-navy);
    font-size: 12px;
    font-weight: 900;
    line-height: 16px;
}

.commission-page-status em {
    color: var(--andar-muted);
    font-size: 10px;
    font-style: normal;
    font-weight: 800;
    line-height: 15px;
}

.section-header h2,
.list-header h2 {
    margin: 0;
    color: var(--andar-navy);
    font-size: 17px;
    font-weight: 900;
}

.dashboard-jobs-header h2 {
    font-size: 15px;
    line-height: 19px;
    margin-top: 20px;
}

.dashboard-jobs-header a {
    font-size: 12px;
    line-height: 16px;
    margin-top: 20px;
}

.muted-text {
    color: var(--andar-muted);
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
}

.current-vehicle-card {
    padding: 14px;
}

.current-vehicle-card form,
.hero-vehicle-row form {
    margin-top: 12px;
}

.current-vehicle-card form .secondary-button,
.hero-vehicle-row form .secondary-button {
    width: 100%;
}

.current-vehicle-icon,
.detail-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #111111;
    background: var(--andar-green-soft);
}

.current-vehicle-empty {
    color: #111111;
    background: var(--andar-orange-soft);
}

.current-vehicle-title,
.detail-value,
.route-title,
.job-vehicle,
.profile-name,
.balance-value,
.earning-row strong,
.remit-banner strong,
.notification-row strong,
.scanner-result-row strong {
    color: var(--andar-navy);
    font-size: 13px;
    font-weight: 900;
}

.current-vehicle-status,
.online-badge,
.balance-trend,
.profile-growth {
    padding: 5px 10px;
    border-radius: 999px;
    color: var(--andar-green);
    background: var(--andar-green-soft);
    font-size: 10px;
    font-weight: 900;
}

.ar-account-notice {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    min-height: 48px;
    margin: 10px 0 0;
    padding: 10px;
    border: 1px solid #f0d27a;
    border-radius: 8px;
    color: var(--andar-navy);
    background: var(--andar-orange-soft);
}

.ar-account-icon {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #8a5a00;
    background: var(--andar-white);
    font-size: 17px;
}

.ar-account-notice-non-ar {
    border-color: #cfe0f5;
    background: var(--andar-blue-soft);
}

.ar-account-notice-non-ar .ar-account-icon {
    color: var(--andar-blue);
}

.ar-account-notice-non-ar em {
    color: #385f8f;
}

.ar-account-notice span:last-child {
    min-width: 0;
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 2px;
}

.ar-account-notice strong {
    color: var(--andar-navy);
    font-size: 12px;
    line-height: 16px;
    font-weight: 900;
    overflow-wrap: anywhere;
}

.ar-account-notice em {
    color: #6f4b05;
    font-size: 10px;
    line-height: 14px;
    font-style: normal;
    font-weight: 800;
}

.ar-account-notice-compact {
    min-height: 34px;
    align-items: center;
    gap: 7px;
    margin: 8px 0 0;
    padding: 6px 8px;
}

.ar-account-notice-compact .ar-account-icon {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
    border-radius: 6px;
    font-size: 13px;
}

.ar-account-notice-compact strong {
    font-size: 10px;
    line-height: 13px;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 900;
}

.status-green {
    color: var(--andar-green);
    background: var(--andar-green-soft);
}

.status-orange {
    color: #8a5a00;
    background: var(--andar-orange-soft);
}

.status-blue {
    color: var(--andar-blue);
    background: var(--andar-blue-soft);
}

.status-red {
    color: var(--andar-red);
    background: #ffefed;
}

.status-navy {
    color: var(--andar-navy);
    background: #eef3fb;
}

.active-job-id {
    min-height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    color: var(--andar-navy);
    text-align: right;
    font-size: 12px;
    line-height: 16px;
    font-weight: 800;
}

.route-plain {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 12px;
    border-radius: 8px;
    background: #f8fafc;
}

.job-line {
    display: flex;
    align-items: center;
    gap: 7px;
}

.route-orange {
    color: var(--andar-orange);
}

.route-blue {
    color: var(--andar-blue);
}

.route-green {
    color: var(--andar-green);
}

.detail-row {
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 8px;
    border-top: 1px solid #edf1f6;
}

.detail-row-link,
.detail-row-link:visited,
.detail-row-link:hover,
.detail-row-link:focus {
    color: inherit;
    cursor: pointer;
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-decoration-color: transparent !important;
    text-decoration-thickness: 0 !important;
    -webkit-text-decoration-line: none !important;
}

.detail-row-link .detail-icon,
.detail-row-link .detail-label,
.detail-row-link .detail-value {
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-decoration-color: transparent !important;
    text-decoration-thickness: 0 !important;
    -webkit-text-decoration-line: none !important;
}

.detail-row-link .detail-value {
    color: var(--andar-green);
}

.pickup-route-card .detail-row-link .detail-value {
    color: #111111;
}

.detail-grid .detail-row {
    width: 100%;
    min-height: 38px;
    align-items: center;
    flex-wrap: nowrap;
    padding: 2px 0;
    border-top: 0;
}

.detail-grid .detail-icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
    border-radius: 8px;
    background: var(--andar-orange-soft);
}

.detail-grid .detail-label {
    flex: 1;
    min-width: 0;
    padding-top: 0;
    font-size: 12px;
    font-weight: 800;
}

.detail-grid .detail-value {
    width: auto;
    max-width: 48%;
    padding-left: 0;
    text-align: right;
    font-size: 12px;
    line-height: 16px;
}

.detail-row:first-of-type {
    border-top: 0;
}

.detail-label {
    flex: 1;
}

.detail-value {
    text-align: right;
    max-width: 58%;
    overflow-wrap: anywhere;
    line-height: 16px;
}

.detail-row-ar {
    margin-top: 6px;
    padding: 9px 10px;
    border: 1px solid #f0d27a;
    border-radius: 8px;
    background: var(--andar-orange-soft);
}

.detail-row-ar .detail-icon {
    color: #8a5a00;
    background: var(--andar-white);
}

.detail-row-ar .detail-label,
.detail-row-ar .detail-value {
    color: var(--andar-navy);
    font-weight: 900;
}

.price-adjustment-list {
    margin: 8px 0 4px;
    padding: 8px 10px;
    border: 1px solid #edf1f6;
    border-radius: 8px;
    background: #f8fafc;
}

.price-adjustment-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    padding: 7px 0;
    border-top: 1px solid #e5ebf3;
}

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

.price-adjustment-row span {
    min-width: 0;
}

.price-adjustment-row strong,
.price-adjustment-row em {
    display: block;
}

.price-adjustment-row strong {
    font-size: 12px;
}

.price-adjustment-row em {
    margin-top: 2px;
    color: #6d7787;
    font-size: 11px;
    font-style: normal;
    line-height: 15px;
}

.price-adjustment-row b {
    flex-shrink: 0;
    color: var(--andar-navy);
    font-size: 12px;
    text-align: right;
}
.dashboard-job-notes {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 8px;
    padding: 10px;
    border: 1px solid #edf1f6;
    border-radius: 8px;
    background: #fffdf4;
}

.dashboard-job-notes-icon {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: #8a5a00;
    background: #fff3bf;
    font-size: 17px;
}

.dashboard-job-notes span:last-child {
    min-width: 0;
}

.dashboard-job-notes strong,
.dashboard-job-notes em {
    display: block;
}

.dashboard-job-notes strong {
    color: var(--andar-navy);
    font-size: 12px;
    line-height: 16px;
}

.dashboard-job-notes em {
    margin-top: 2px;
    color: #536174;
    font-size: 11px;
    font-style: normal;
    line-height: 16px;
    white-space: pre-line;
}

.detail-icon,
.current-vehicle-icon,
.metric-icon,
.proof-icon,
.notification-icon,
.vehicle-photo-empty {
    font-size: 20px;
}

.detail-grid {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 10px;
    border-radius: 8px;
    background: var(--andar-soft);
}

.dashboard-job-primary {
    margin-top: 6px;
    background: var(--andar-soft);
}

.dashboard-job-more {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}

.dashboard-job-more summary {
    order: 2;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid #dbe7f4;
    border-radius: 8px;
    color: var(--andar-navy);
    background: var(--andar-white);
    font-size: 12px;
    line-height: 16px;
    font-weight: 900;
    cursor: pointer;
    list-style: none;
}

.dashboard-job-more[open] summary {
    margin-top: 10px;
}

.dashboard-job-more summary::-webkit-details-marker {
    display: none;
}

.dashboard-job-more summary .ion {
    color: var(--andar-blue);
    font-size: 14px;
    transition: transform 160ms ease;
}

.dashboard-job-more[open] summary .ion {
    transform: rotate(180deg);
}

.dashboard-job-more-close,
.dashboard-job-more[open] .dashboard-job-more-open {
    display: none;
}

.dashboard-job-more[open] .dashboard-job-more-close {
    display: inline;
}

.dashboard-job-assigned {
    display: block;
    margin-top: 10px;
    color: var(--andar-muted);
    font-size: 11px;
    line-height: 15px;
    font-weight: 800;
}

.dashboard-job-extra {
    order: 1;
}

.dashboard-job-more .detail-grid {
    margin-top: 0;
}

.dashboard-job-primary + .dashboard-job-more[open] {
    margin-top: 0;
}

.dashboard-job-primary + .dashboard-job-more[open] .dashboard-job-extra .detail-grid {
    padding-top: 0;
    border-radius: 0 0 8px 8px;
}

.dashboard-job-primary:has(+ .dashboard-job-more[open]) {
    border-radius: 8px 8px 0 0;
    padding-bottom: 0;
}

.job-request-panel .job-top {
    margin-bottom: 15px;
}

.job-request-panel form {
    margin-top: 12px;
}

.new-trip-modal {
    position: fixed;
    inset: 0;
    z-index: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    padding: calc(18px + env(safe-area-inset-top, 0px)) 14px calc(18px + env(safe-area-inset-bottom, 0px));
    background: rgba(7, 31, 73, 0.58);
    backdrop-filter: blur(8px);
}

.new-trip-modal[hidden] {
    display: none;
}

.new-trip-dialog {
    width: min(100%, 380px);
    max-height: calc(100dvh - 36px);
    overflow-y: auto;
    border-radius: 15px;
    background: var(--andar-white);
    box-shadow: 0 24px 70px rgba(7, 31, 73, 0.36);
}

.new-trip-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 14px 4px;
}

.new-trip-alert-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--andar-orange);
    background: var(--andar-orange-soft);
    font-size: 21px;
}

.new-trip-alert h2 {
    margin: 0 0 3px;
    color: var(--andar-navy);
    font-size: 18px;
    line-height: 22px;
    font-weight: 900;
}

.new-trip-alert p {
    margin: 0;
    color: var(--andar-muted);
    font-size: 11px;
    line-height: 15px;
    font-weight: 700;
}

.new-trip-panel {
    padding: 10px 14px 14px;
}

.new-trip-panel .route-plain,
.new-trip-panel .dashboard-job-primary,
.new-trip-panel .dashboard-job-more .detail-grid {
    background: #f8fafc;
}

.new-trip-accept-form .swipe-action,
.new-trip-accept-form .primary-button {
    margin-top: 24px;
}

.new-trip-later-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 9px;
    padding: 0 14px 14px;
}

.new-trip-later-actions .primary-button,
.new-trip-later-actions .secondary-button {
    min-height: 44px;
    border-radius: 12px;
    font-size: 12px;
}

.trip-sound-unlock {
    width: calc(100% - 28px);
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 14px 14px;
    border: 0;
    border-radius: 12px;
    color: #111827;
    background: var(--andar-orange);
    font-family: inherit;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 10px 22px rgba(255, 196, 0, 0.32);
}

.detail-grid .detail-icon {
    font-size: 16px;
}

.job-line > .ion,
.route-plain .ion {
    width: 24px;
    flex: 0 0 24px;
    text-align: center;
    font-size: 18px;
}

.route-plain .job-line {
    align-items: flex-start;
}

.job-list-card,
.earning-row,
.notification-row,
.remit-banner {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 10px;
    padding: 14px;
    color: inherit;
    text-align: left;
    text-decoration: none;
}

.job-list-card {
    display: block;
}

.job-list-top,
.job-list-bottom {
    margin-bottom: 10px;
}

.job-list-card .job-vehicle {
    margin-bottom: 6px;
}

.job-list-card .job-line {
    min-height: 20px;
    margin-top: 2px;
}

.job-list-card .job-line span:last-child {
    min-width: 0;
    color: var(--andar-ink);
    font-size: 12px;
    line-height: 16px;
    font-weight: 700;
}

.job-list-bottom {
    align-items: flex-start;
    gap: 8px;
    margin-top: 8px;
}

.job-list-bottom strong {
    flex: 0 0 auto;
    white-space: nowrap;
}

.filter-pills {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.filter-pills a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    border-radius: 999px;
    color: var(--andar-navy);
    background: var(--andar-white);
    border: 1px solid var(--andar-line);
    text-align: center;
    text-decoration: none;
    font-size: 10px;
    line-height: 13px;
    font-weight: 900;
}

.filter-pills .filter-on {
    color: var(--andar-white);
    background: var(--andar-navy);
}

.page-top {
    align-items: flex-start;
    padding: 16px;
    margin-bottom: 16px;
    border: 1px solid var(--andar-line);
    border-radius: 10px;
    background: var(--andar-white);
    box-shadow: var(--andar-shadow);
}

.page-top h1,
.detail-hero h1,
.remit-hero h1 {
    margin: 0;
    color: var(--andar-navy);
    font-size: 24px;
    line-height: 29px;
    font-weight: 900;
}

.list-header {
    position: relative;
    z-index: 50;
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.list-header h2 {
    margin: 0;
    flex: 1;
    min-width: 0;
}

.trip-filter-wrap {
    position: relative;
    z-index: 60;
    flex: 0 0 auto;
    align-self: flex-start;
}

.trip-filter-wrap[open] {
    z-index: 80;
}

.trip-filter-button {
    min-width: 92px;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 8px 12px;
    border-radius: 2px;
    color: var(--andar-white);
    background: #242424;
    box-shadow: 0 5px 12px rgba(16, 24, 40, 0.12);
    cursor: pointer;
    list-style: none;
}

.trip-filter-button::-webkit-details-marker {
    display: none;
}

.trip-filter-button span {
    color: var(--andar-white);
    font-size: 9px;
    line-height: 12px;
    text-transform: uppercase;
    font-weight: 900;
}

.trip-filter-button i {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid var(--andar-white);
}

.trip-filter-wrap[open] .trip-filter-button i {
    border-top: 0;
    border-bottom: 5px solid var(--andar-white);
}

.trip-filter-menu {
    position: absolute;
    top: 38px;
    right: 0;
    z-index: 70;
    width: 170px;
    overflow: hidden;
    padding: 0;
    border: 1px solid #d9dde5;
    border-radius: 1px;
    background: var(--andar-white);
    box-shadow: 0 5px 12px rgba(16, 24, 40, 0.14);
}

.trip-filter-option {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 8px 12px;
    color: #242424;
    background: var(--andar-white);
    text-decoration: none;
}

.trip-filter-option-on {
    background: #f3f4f6;
}

.trip-filter-option span {
    flex: 1;
    min-width: 0;
    color: #242424;
    font-size: 11px;
    line-height: 15px;
    font-weight: 700;
}

.trip-filter-option strong {
    min-width: 24px;
    padding: 2px 5px;
    border-radius: 10px;
    color: var(--andar-muted);
    background: #f3f4f6;
    text-align: center;
    font-size: 10px;
    font-weight: 900;
}

.stat {
    flex: 1;
    min-height: 62px;
    padding: 11px;
    border: 1px solid var(--andar-line);
    border-radius: 8px;
    background: var(--andar-white);
}

a.stat {
    display: block;
    color: inherit;
    text-decoration: none;
}

.trip-stat-link:active {
    transform: translateY(1px);
}

.stat-label {
    color: var(--andar-muted);
    font-size: 10px;
    font-weight: 800;
}

.stat-value {
    color: var(--andar-navy);
    font-size: 13px;
    line-height: 16px;
    font-weight: 900;
    overflow-wrap: anywhere;
}

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

.summary-row .stat {
    min-width: 0;
}

.stat-orange {
    color: var(--andar-orange);
}

.stat-blue {
    color: var(--andar-blue);
}

.stat-green {
    color: var(--andar-green);
}

.primary-button.full-button,
.secondary-button.full-button,
.full-button {
    width: 100%;
}

.active-job form,
.active-job .primary-button {
    margin-top: 12px;
}

.secondary-button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 12px;
    border: 1px solid var(--andar-line);
    border-radius: 10px;
    color: var(--andar-navy);
    background: var(--andar-white);
    font-family: inherit;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
}

.danger {
    color: var(--andar-red);
    border-color: #ffc6bd;
}

.two-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.two-buttons > * {
    flex: 1;
}

.map-preview {
    position: relative;
    height: 286px;
    overflow: hidden;
    margin-bottom: 12px;
    border: 1px solid #d8e2ee;
    border-radius: 10px;
    background: #f4f1e8;
}

.map-preview.map-preview-expanded {
    position: fixed;
    inset: 0;
    z-index: 1000;
    width: 100vw;
    max-width: none;
    height: 100dvh;
    margin: 0;
    border: 0;
    border-radius: 0;
}

.map-preview.map-preview-expanded iframe,
.map-preview.map-preview-expanded .map-canvas {
    height: 100dvh;
}

.map-preview iframe,
.map-canvas {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.map-canvas {
    display: none;
    touch-action: pan-x pan-y;
}

.map-js-ready .map-canvas {
    display: block;
}

.map-js-ready .map-frame {
    display: none;
}

.map-preview-expanded .map-eta {
    display: none;
}

.map-close-button {
    position: absolute;
    right: 14px;
    top: 14px;
    z-index: 2;
    width: 42px;
    height: 42px;
    display: none;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 21px;
    color: var(--andar-navy);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 28px rgba(10, 31, 68, 0.18);
    font-size: 24px;
}

.map-preview-expanded .map-close-button {
    display: inline-flex;
}

.map-preview-expanded .map-live-badge {
    right: 66px;
}

.map-preview-expanded .map-route-sheet {
    bottom: 18px;
}

.map-eta,
.map-live-badge,
.map-route-sheet {
    position: absolute;
    background: rgba(255, 255, 255, 0.94);
}

.map-eta,
.map-live-badge {
    pointer-events: none;
}

.map-eta {
    left: 12px;
    top: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px;
    border-radius: 12px;
}

.map-eta-label {
    color: var(--andar-muted);
    font-size: 10px;
    font-weight: 800;
}

.map-eta-value {
    color: var(--andar-navy);
    font-size: 14px;
    font-weight: 900;
}

.map-live-badge {
    right: 12px;
    top: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    color: var(--andar-navy);
    font-size: 10px;
    font-weight: 900;
}

.map-live-badge span {
    width: 7px;
    height: 7px;
    border-radius: 4px;
    background: var(--andar-green);
}

.map-route-sheet {
    left: 10px;
    right: 10px;
    bottom: 10px;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
    border-radius: 16px;
}

.map-route-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.map-route-time {
    color: #188038;
    font-size: 18px;
    font-weight: 900;
}

.map-route-meta {
    color: var(--andar-muted);
    font-size: 11px;
    font-weight: 700;
}

.map-route-action {
    border: 0;
    min-width: 84px;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 17px;
    color: var(--andar-white);
    background: #1a73e8;
    text-decoration: none;
    font-size: 11px;
    font-weight: 900;
}

.map-route-secondary {
    color: var(--andar-navy);
    background: var(--andar-blue-soft);
}

.map-navigation-active .map-route-action[data-map-start] {
    color: var(--andar-white);
    background: var(--andar-green);
}

.flow-lead {
    margin: 0 0 12px;
    color: var(--andar-muted);
    font-size: 12px;
    line-height: 17px;
    font-weight: 700;
}

.flow-info-card {
    margin-bottom: 12px;
}

.flow-info-card h2,
.flow-card-heading h2,
.collections-card h2 {
    margin: 0 0 5px;
    color: var(--andar-navy);
    font-size: 14px;
    line-height: 18px;
    font-weight: 900;
}

.flow-info-card p,
.flow-card-heading p,
.collections-card p {
    margin: 0;
    color: var(--andar-muted);
    font-size: 11px;
    line-height: 16px;
    font-weight: 700;
}

.flow-card-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.flow-card-heading > div {
    flex: 1;
    min-width: 0;
}

.flow-step-pill {
    flex: 0 0 auto;
    padding: 5px 10px;
    border-radius: 999px;
    color: var(--andar-blue);
    background: var(--andar-blue-soft);
    font-size: 10px;
    line-height: 13px;
    font-weight: 900;
}

.flow-summary-row {
    margin-bottom: 0;
}

.flow-contact-row .secondary-button {
    min-height: 48px;
    font-size: 12px;
}

.vehicle-photo-slot {
    width: calc(50% - 5px);
    min-height: 148px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px;
    border: 1px dashed #c6d2e1;
    border-radius: 8px;
    background: var(--andar-white);
}

.vehicle-photo-bulk {
    width: 100%;
    min-height: 178px;
    padding: 18px;
}

.vehicle-photo-bulk .vehicle-photo-empty {
    width: 58px;
    height: 58px;
    font-size: 24px;
}

.vehicle-photo-bulk strong {
    font-size: 15px;
    line-height: 20px;
}

.vehicle-photo-bulk em {
    font-size: 12px;
    line-height: 16px;
}

.vehicle-photo-bulk .vehicle-photo-actions {
    max-width: 260px;
    margin-top: 10px;
}

.vehicle-photo-preview {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin-top: 8px;
}

.vehicle-photo-preview[hidden] {
    display: none;
}

.vehicle-photo-preview span {
    position: relative;
    display: block;
    overflow: hidden;
    border: 1px solid var(--andar-line);
    border-radius: 8px;
    background: var(--andar-white);
    aspect-ratio: 1;
}

.proof-preview-remove {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    color: var(--andar-white);
    background: rgba(15, 23, 42, 0.78);
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.18);
    display: none;
}

.vehicle-photo-preview img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.vehicle-photo-bulk .vehicle-photo-actions label {
    min-height: 38px;
    font-size: 11px;
}

.vehicle-photo-slot.upload-card-on {
    border-style: solid;
    border-color: #a6e2bd;
    background: var(--andar-green-soft);
}

.vehicle-photo-slot.vehicle-photo-missing {
    border-style: solid;
    border-color: #ef4444;
    background: #fff5f5;
}

.vehicle-photo-slot.upload-card-on .vehicle-photo-empty {
    color: var(--andar-green);
    background: var(--andar-white);
}

.vehicle-photo-empty {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--andar-orange);
    background: var(--andar-orange-soft);
}

.vehicle-photo-slot strong {
    color: var(--andar-navy);
    font-size: 12px;
    line-height: 16px;
    font-weight: 900;
    text-align: center;
}

.vehicle-photo-slot em {
    color: var(--andar-muted);
    font-size: 10px;
    line-height: 14px;
    font-style: normal;
    font-weight: 800;
}

.vehicle-photo-actions {
    width: 100%;
    display: flex;
    gap: 6px;
    margin-top: 4px;
}

.vehicle-photo-actions label {
    flex: 1;
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--andar-line);
    border-radius: 7px;
    color: var(--andar-navy);
    background: var(--andar-white);
    font-size: 9px;
    line-height: 12px;
    font-weight: 900;
    cursor: pointer;
}

.completion-summary-card {
    margin-bottom: 12px;
}

.trip-summary-heading {
    margin-bottom: 8px;
}

.proof-image-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 12px;
}

.proof-image-grid img {
    width: 100%;
    aspect-ratio: 1;
    display: block;
    border: 1px solid var(--andar-line);
    border-radius: 8px;
    object-fit: cover;
    background: var(--andar-soft);
}

.proof-image-item {
    position: relative;
    overflow: visible;
}

.proof-image-delete {
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    bottom: auto;
    transform: translate(32%, -32%);
    border: 0;
    border-radius: 999px;
    width: 18px;
    height: 18px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--andar-white);
    background: rgba(226, 45, 22, 0.9);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.28);
    font-size: 14px;
    line-height: 16px;
    font-weight: 900;
    box-sizing: border-box;
    pointer-events: auto;
    z-index: 2;
}

.proof-image-delete:hover,
.proof-image-delete:focus-visible {
    background: rgba(226, 45, 22, 1);
    border-color: rgba(255, 255, 255, 0.95);
}

.proof-image-empty {
    min-height: 78px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
    border: 1px dashed #d8e0eb;
    border-radius: 8px;
    color: var(--andar-muted);
    background: #f8fafc;
    font-size: 11px;
    font-weight: 800;
}

.proof-image-empty .ion {
    font-size: 22px;
}

.completion-photo-grid {
    margin-bottom: 14px;
}

.flow-section-title {
    margin: 2px 0 10px;
    font-size: 14px;
    line-height: 18px;
}

.payment-section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 2px 0 10px;
}

.payment-section-heading > div:first-child {
    min-width: 0;
}

.payment-section-heading .flow-section-title {
    margin: 0;
}

.payment-heading-actions {
    flex: 0 0 auto;
    max-width: 48%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;
    flex-wrap: wrap;
}

.completion-payment-card .payment-section-heading {
    align-items: flex-start;
    margin: 0 0 10px;
}

.completion-payment-card .payment-section-heading p {
    margin-top: 3px;
}

.completion-payment-card .payment-saved-method {
    margin-bottom: 12px;
}

.completion-payment-card .payment-list {
    margin-bottom: 0;
}

.completion-payment-card .completion-payment-fields {
    margin-top: 10px;
}

.completion-payment-card .completion-proof-grid {
    margin-bottom: 0;
}

.completion-payment-card.payment-attention,
.pickup-payment-card.payment-attention {
    border-color: #ffb5aa;
    box-shadow: 0 0 0 3px rgba(226, 45, 22, 0.08), 0 14px 32px rgba(16, 24, 40, 0.08);
}

.payment-method-split-area.payment-attention .completion-payment-card {
    border-color: #ffb5aa;
    box-shadow: 0 0 0 3px rgba(226, 45, 22, 0.08), 0 14px 32px rgba(16, 24, 40, 0.08);
}

.completion-payment-card.payment-attention .payment-saved-method,
.pickup-payment-card.payment-attention .payment-saved-method {
    border-color: #ffb5aa;
    background: #fff1ef;
}

.payment-method-split-area.payment-attention .completion-payment-card .payment-saved-method {
    border-color: #ffb5aa;
    background: #fff1ef;
}

.completion-payment-card.payment-attention .payment-saved-method span,
.completion-payment-card.payment-attention .payment-saved-method strong,
.pickup-payment-card.payment-attention .payment-saved-method span,
.pickup-payment-card.payment-attention .payment-saved-method strong {
    color: var(--andar-red);
}

.payment-method-split-area.payment-attention .completion-payment-card .payment-saved-method span,
.payment-method-split-area.payment-attention .completion-payment-card .payment-saved-method strong {
    color: var(--andar-red);
}

.payment-attention-message {
    margin: -4px 0 10px;
    padding: 9px 11px;
    border: 1px solid #ffb5aa;
    border-radius: 8px;
    color: var(--andar-red);
    background: #fff7f5;
    font-size: 11px;
    line-height: 15px;
    font-weight: 900;
}

.payment-attention-message[hidden] {
    display: none;
}

.xendit-heading-generate {
    min-height: 34px;
    flex: 0 0 auto;
    min-width: 132px;
    max-width: 100%;
    padding: 7px 10px;
    border: 1px solid var(--andar-orange);
    border-radius: 8px;
    color: var(--andar-navy);
    background: var(--andar-white);
    font-family: inherit;
    font-size: 10px;
    line-height: 14px;
    font-weight: 900;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
}

.payment-heading-actions .xendit-heading-generate {
    max-width: none;
}

.payment-method-split-area {
    display: grid;
    gap: 10px;
}

.vehicle-photo-grid + .payment-method-split-area {
    margin-top: 10px;
}

.payment-method-split-area .pickup-payment-card {
    margin-top: 0;
}

.payment-method-add-toolbar {
    display: flex;
    justify-content: flex-end;
}

.payment-method-add-button,
[data-payment-method-add-open] {
    min-height: 34px;
    padding: 7px 10px;
    border: 2px solid var(--andar-navy);
    border-radius: 8px;
    color: var(--andar-navy);
    background: var(--andar-white);
    font-family: inherit;
    font-size: 10px;
    line-height: 14px;
    font-weight: 900;
    white-space: nowrap;
    cursor: pointer;
}

.payment-method-remove-button {
    position: absolute;
    top: -13px;
    right: -13px;
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    color: #e22d16;
    background: var(--andar-white);
    font-size: 23px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
}

.payment-method-extra-card {
    margin-top: 0;
    position: relative;
    overflow: visible;
}

.payment-method-extra-card .payment-section-heading {
    align-items: flex-start;
    padding-right: 46px;
}

.payment-method-extra-card[hidden] {
    display: none;
}

.payment-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.payment-saved-method {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 12px;
    margin-bottom: 10px;
    border: 1px solid var(--andar-line);
    border-radius: 8px;
    background: var(--andar-soft);
}

.payment-balance-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.payment-saved-method span {
    color: var(--andar-muted);
    font-size: 11px;
    line-height: 15px;
    font-weight: 800;
}

.payment-saved-method .payment-balance-detail {
    display: block;
    color: #6b7890;
    font-size: 9px;
    font-style: normal;
    font-weight: 700;
    line-height: 11px;
    overflow-wrap: anywhere;
}

.payment-saved-method .payment-balance-detail[hidden] {
    display: none;
}

.payment-saved-method strong {
    flex: 0 0 auto;
    color: var(--andar-navy);
    font-size: 13px;
    line-height: 18px;
    font-weight: 900;
}

.payment-row {
    min-height: 52px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 0 12px;
    border: 1px solid var(--andar-line);
    border-radius: 8px;
    background: var(--andar-white);
    color: var(--andar-navy);
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
}

.payment-row[hidden] {
    display: none;
}

.payment-row-with-action {
    gap: 8px;
    padding-right: 8px;
}

.payment-row-label {
    min-height: 50px;
    display: flex;
    align-items: center;
    gap: 11px;
    flex: 1;
    cursor: pointer;
}

.payment-row-label > span:nth-child(3) {
    flex: 1;
}

.payment-row span:nth-child(3) {
    flex: 1;
}

.payment-icon {
    width: 24px;
    flex: 0 0 24px;
    text-align: center;
    font-size: 18px;
}

.payment-check {
    display: none;
    color: var(--andar-orange);
    font-size: 18px;
}

.payment-row-on,
.payment-row:has(input:checked) {
    border-color: var(--andar-orange);
    background: var(--andar-orange-soft);
}

.payment-row-success,
.payment-row-merchant-settled,
.payment-row-success:has(input:checked) {
    border-color: var(--andar-green);
    background: var(--andar-green-soft);
}

.payment-row-success .payment-check,
.payment-row-merchant-settled .payment-check,
.payment-row-success:has(input:checked) .payment-check {
    color: var(--andar-green);
    display: inline-block;
}

.payment-row-on .payment-check,
.payment-row:has(input:checked) .payment-check {
    display: inline-block;
}

.payment-row-hint {
    color: var(--andar-muted);
    font-size: 10px;
    font-weight: 800;
    white-space: nowrap;
}

.payment-row-success .payment-row-hint {
    color: var(--andar-green);
}

.payment-row-merchant-settled .payment-row-hint {
    color: var(--andar-green);
}

.qr-merchant-settlement {
    margin: -4px 0 12px;
}

.qr-merchant-button {
    min-height: 38px;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--andar-line);
    border-radius: 8px;
    background: var(--andar-white);
    color: var(--andar-navy);
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
}

.qr-merchant-button .ion {
    font-size: 17px;
}

.qr-merchant-button.is-selected {
    border-color: var(--andar-green);
    background: var(--andar-green);
    color: var(--andar-white);
}

.xendit-status-check-form {
    flex: 0 0 auto;
}

.xendit-status-check-button {
    min-height: 34px;
    border: 1px solid var(--andar-orange);
    border-radius: 7px;
    padding: 0 9px;
    background: var(--andar-white);
    color: var(--andar-navy);
    font-size: 10px;
    font-weight: 900;
    cursor: pointer;
    white-space: nowrap;
}

.payment-row-success .xendit-status-check-button {
    border-color: var(--andar-green);
    background: var(--andar-green);
    color: var(--andar-white);
}

.payment-row-success .xendit-status-check-button:disabled {
    opacity: 1;
}

.xendit-status-check-button:disabled {
    opacity: .55;
    cursor: not-allowed;
}

.payment-method-add-panel {
    width: min(430px, 100%);
}

.payment-method-add-options {
    display: grid;
    gap: 10px;
}

.payment-method-add-options button {
    min-height: 70px;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: center;
    gap: 2px 10px;
    width: 100%;
    padding: 12px;
    border: 1px solid var(--andar-line);
    border-radius: 8px;
    background: var(--andar-white);
    color: var(--andar-navy);
    font-family: inherit;
    text-align: left;
    cursor: pointer;
}

.payment-method-add-options button:focus,
.payment-method-add-options button:hover {
    border-color: var(--andar-orange);
    background: var(--andar-orange-soft);
    outline: none;
}

.payment-method-add-options .ion {
    grid-row: 1 / span 2;
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    border-radius: 8px;
    background: var(--andar-soft);
    color: var(--andar-orange);
    font-size: 20px;
}

.payment-method-add-options strong {
    min-width: 0;
    font-size: 13px;
    line-height: 18px;
    font-weight: 900;
}

.payment-method-add-options em {
    min-width: 0;
    color: var(--andar-muted);
    font-size: 11px;
    line-height: 15px;
    font-style: normal;
    font-weight: 800;
}

.pickup-payment-card {
    margin-top: 14px;
}

.pickup-payment-list {
    margin-top: 12px;
}

.pickup-payment-fields {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
}

.pickup-payment-fields[hidden] {
    display: none;
}

.pickup-payment-proof {
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
}

.pickup-payment-proof .upload-card {
    width: 100%;
    max-width: 100%;
    min-height: 128px;
    margin-bottom: 0;
}

.payment-qr-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 12px;
}

.payment-qr-heading {
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-qr-heading h2 {
    margin: 0;
    color: var(--andar-navy);
    font-size: 15px;
    line-height: 19px;
    font-weight: 900;
}

.payment-qr-heading p {
    margin: 2px 0 0;
    color: var(--andar-muted);
    font-size: 11px;
    line-height: 15px;
    font-weight: 800;
}

.payment-qr-icon {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--andar-blue);
    background: var(--andar-blue-soft);
    font-size: 20px;
}

.payment-qr-image {
    width: min(100%, 240px);
    aspect-ratio: 1;
    align-self: center;
    object-fit: contain;
    padding: 10px;
    border: 1px solid var(--andar-line);
    border-radius: 8px;
    background: var(--andar-white);
}

.payment-qr-empty {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px dashed #b9c5d6;
    border-radius: 8px;
    color: var(--andar-muted);
    background: var(--andar-soft);
    font-size: 12px;
    line-height: 16px;
    font-weight: 900;
}

.payment-link-button {
    min-height: 44px;
}

.payment-reference {
    overflow-wrap: anywhere;
    color: var(--andar-muted);
    font-size: 11px;
    line-height: 15px;
    font-weight: 800;
    text-align: center;
}

.payment-history-empty {
    margin-top: 10px;
    padding: 12px;
    border: 1px dashed var(--andar-line);
    border-radius: 8px;
    color: var(--andar-muted);
    background: var(--andar-soft);
    font-size: 11px;
    line-height: 16px;
    font-weight: 800;
    text-align: center;
}

.payment-qr-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(16px + env(safe-area-inset-top, 0px)) 16px calc(16px + env(safe-area-inset-bottom, 0px));
    background: transparent;
}

.payment-qr-modal[hidden] {
    display: none;
}

.payment-qr-dialog {
    position: relative;
    width: 100%;
    max-width: 430px;
    max-height: calc(100vh - 32px);
    max-height: calc(100dvh - 32px - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
    overflow: auto;
    padding: 18px;
    border-radius: 8px;
    background: var(--andar-white);
    box-shadow: 0 24px 70px rgba(7, 31, 73, 0.26);
}

.payment-qr-dialog .payment-qr-card {
    margin-bottom: 0;
}

.payment-qr-dialog .payment-qr-heading {
    padding-right: 42px;
}

.payment-qr-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--andar-navy);
    background: var(--andar-soft);
    font-size: 22px;
    cursor: pointer;
}

.payment-qr-modal-open {
    overflow: hidden;
}

.payment-details-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(16px + env(safe-area-inset-top, 0px)) 16px calc(16px + env(safe-area-inset-bottom, 0px));
    background: transparent;
}

.payment-details-modal[hidden] {
    display: none;
}

.payment-details-dialog {
    position: relative;
    width: 100%;
    max-width: 430px;
    max-height: calc(100vh - 32px);
    max-height: calc(100dvh - 32px - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow: auto;
    padding: 18px;
    border-radius: 10px;
    background: var(--andar-white);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.22);
}

.payment-details-dialog .payment-qr-heading {
    padding-right: 42px;
}

.payment-details-dialog .payment-qr-heading h2 {
    font-size: 18px;
    line-height: 23px;
}

.payment-details-dialog .payment-qr-heading p {
    font-size: 11px;
    line-height: 15px;
}

.payment-details-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 8px;
    color: var(--andar-navy);
    background: var(--andar-soft);
    font-family: Ionicons !important;
    font-size: 21px;
    line-height: 1;
}

.payment-detail-fields {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.payment-detail-fields[hidden] {
    display: none !important;
}

.payment-detail-fields label {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: var(--andar-muted);
    font-size: 11px;
    font-weight: 900;
}

.payment-detail-fields input {
    min-height: 44px;
    width: 100%;
    border: 1px solid var(--andar-line);
    border-radius: 8px;
    padding: 0 11px;
    color: var(--andar-navy);
    background: var(--andar-white);
    font-family: inherit;
    font-size: 13px;
    font-weight: 800;
}

.payment-detail-fields input:focus {
    border-color: var(--andar-orange);
    outline: 0;
    box-shadow: 0 0 0 3px rgba(255, 196, 0, 0.18);
}

.payment-detail-fields input.payment-input-error {
    border-color: #ff8f80;
    background: #fff7f5;
    color: var(--andar-red);
    box-shadow: 0 0 0 3px rgba(226, 45, 22, 0.08);
}

.payment-field-warning {
    display: block;
    margin-top: 6px;
    color: var(--andar-red);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.35;
}

.payment-field-warning[hidden] {
    display: none;
}

.payment-details-modal-open {
    overflow: hidden;
}

@media (max-height: 720px) {
    .payment-qr-dialog {
        padding: 14px;
    }

    .payment-qr-image {
        width: min(100%, 205px);
        padding: 8px;
    }

    .payment-qr-card {
        gap: 9px;
    }
}

.remit-hero,
.balance-card {
    padding: 16px;
    margin-bottom: 12px;
    border-radius: 10px;
    background: var(--andar-white);
    box-shadow: var(--andar-shadow);
}

.remit-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.remit-screen-hero {
    min-height: 176px;
    align-items: flex-start;
    padding: 24px;
}

.remit-hero-copy {
    flex: 1;
    min-width: 0;
}

.remit-hero h1 {
    margin: 0 0 24px;
    color: var(--andar-navy);
    font-size: 23px;
    line-height: 26px;
    font-weight: 900;
}

.remit-hero p {
    margin: 0;
    max-width: 310px;
    color: var(--andar-ink);
    font-size: 16px;
    line-height: 25px;
    font-weight: 700;
}

.remit-page-card {
    padding: 18px;
    margin-bottom: 20px;
}

.remit-page-card h2 {
    margin: 0 0 12px;
    color: var(--andar-navy);
    font-size: 13px;
    line-height: 17px;
    font-weight: 900;
}

.remit-page-card > p {
    margin: 0;
    color: var(--andar-ink);
    font-size: 12px;
    line-height: 17px;
    font-weight: 600;
}

.collections-card {
    padding: 14px;
    margin-bottom: 12px;
}

.collections-card .summary-row {
    display: block;
    grid-template-columns: 1fr;
    margin-bottom: 0;
}

.collections-card .stat {
    width: 100%;
    max-width: 100%;
    flex: 1 1 auto;
    min-height: 76px;
    padding: 16px;
}

.collections-card .stat-label {
    font-size: 11px;
    line-height: 15px;
}

.collections-card .stat-value {
    font-size: 14px;
    line-height: 18px;
}

.wallet-art {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    border-radius: 16px;
    color: var(--andar-white);
    background: var(--andar-navy);
    box-shadow: 0 8px 16px rgba(7, 31, 73, 0.16);
}

.wallet-art-main {
    font-size: 28px;
}

.remit-trip-row {
    min-height: 88px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border: 1px solid var(--andar-line);
    border-radius: 8px;
    background: var(--andar-orange-soft);
    color: var(--andar-navy);
    cursor: pointer;
}

.remit-trip-row + .remit-trip-row {
    margin-top: 2px;
}

.remit-trip-row input:not(:checked) + .remit-check {
    color: transparent;
    background: var(--andar-white);
    border: 1px solid var(--andar-line);
}

.remit-trip-row:not(:has(input:checked)) {
    background: var(--andar-white);
}

.remit-trip-row-off {
    background: var(--andar-white);
}

.remit-check {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #111827;
    background: var(--andar-orange);
    font-size: 18px;
}

.remit-trip-row span:nth-child(3),
.remit-row span:nth-child(2),
.earning-row span:nth-child(2),
.notification-copy {
    flex: 1;
    min-width: 0;
}

.remit-trip-row em,
.remit-row em,
.scanner-result-row em {
    display: block;
    color: var(--andar-muted);
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
}

.remit-trip-row strong,
.remit-row strong {
    color: var(--andar-navy);
    font-size: 13px;
    line-height: 17px;
    font-weight: 900;
}

.remit-trip-row b,
.remit-row b {
    flex: 0 0 auto;
    color: var(--andar-navy);
    font-size: 13px;
    line-height: 17px;
    font-weight: 900;
    white-space: nowrap;
}

.remit-trip-row em {
    font-size: 11px;
    line-height: 16px;
}

.remit-proof-card .upload-card {
    width: 100%;
    max-width: 100%;
    min-height: 218px;
    margin-bottom: 0;
    padding: 18px;
}

.remit-proof-card .proof-main {
    max-width: none;
    margin: 0 auto;
}

.remit-proof-card .proof-actions {
    max-width: none;
    margin: 10px auto 0;
}

.remit-row {
    min-height: 70px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 8px 0;
    border-top: 1px solid #edf1f6;
}

.remit-row:first-of-type {
    border-top: 0;
}

.remit-row-icon {
    width: 24px;
    flex: 0 0 24px;
    color: var(--andar-green);
    font-size: 20px;
}

.remit-row em {
    font-size: 10px;
    line-height: 14px;
}

.remit-row .status-pill {
    font-size: 10px;
    line-height: 13px;
}

.remit-submit-button {
    min-height: 74px;
    margin-top: 8px;
    border-radius: 18px;
    font-size: 14px;
    box-shadow: 0 10px 18px rgba(224, 169, 0, 0.2);
}

.balance-card {
    background: var(--andar-navy);
}

.balance-value-light {
    color: var(--andar-white);
    font-size: 24px;
    font-weight: 900;
}

.balance-label,
.balance-sub {
    color: #dfe8f7;
}

.remit-banner span:nth-child(2),
.earning-row span:nth-child(2) {
    flex: 1;
}

.remit-banner b {
    flex: 0 0 auto;
    color: var(--andar-navy);
    font-size: 15px;
    font-weight: 900;
}

.earning-row {
    min-height: 78px;
}

.earning-right {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
    text-align: right;
}

.earning-right strong {
    white-space: nowrap;
}

.remit-banner em,
.earning-row em {
    display: block;
    font-style: normal;
}

.profile-hero {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    margin-bottom: 14px;
    border: 1px solid var(--andar-line);
    border-radius: 10px;
    background: var(--andar-white);
    box-shadow: var(--andar-shadow);
}

.profile-name {
    font-size: 15px;
}

.profile-name span {
    color: var(--andar-blue);
    font-size: 12px;
}

.profile-list {
    padding: 0;
    overflow: hidden;
}

.profile-menu-row {
    width: 100%;
    min-height: 54px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
    border: 0;
    border-top: 1px solid #edf1f6;
    background: var(--andar-white);
    color: var(--andar-navy);
    text-align: left;
    font-family: inherit;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}

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

.profile-menu-row span:nth-child(2) {
    flex: 1;
}

.profile-menu-row b {
    color: var(--andar-orange);
    font-size: 10px;
    font-weight: 900;
}

.profile-earnings {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.profile-earnings strong {
    padding: 12px;
    border-radius: 8px;
    color: var(--andar-green);
    background: var(--andar-green-soft);
}

.notification-row {
    border: 0;
    font-family: inherit;
    cursor: pointer;
}

.notification-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    color: var(--andar-orange);
    background: var(--andar-orange-soft);
}

.notification-copy > span {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}

.scanner-mode-toggle {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin: 0 0 14px;
    padding: 5px;
    border: 1px solid var(--andar-line);
    border-radius: 8px;
    background: #f8fafc;
}

.scanner-mode-option {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 10px;
    border: 0;
    border-radius: 6px;
    color: var(--andar-muted);
    background: transparent;
    font-family: inherit;
    font-size: 12px;
    line-height: 16px;
    font-weight: 900;
    cursor: pointer;
}

.scanner-mode-option .ion {
    font-size: 17px;
}

.scanner-mode-option-on {
    color: var(--andar-navy);
    background: var(--andar-white);
    box-shadow: 0 7px 18px rgba(7, 31, 73, 0.1);
}

.scanner-mode-panel[hidden] {
    display: none;
}

.scanner-card {
    height: 330px;
    overflow: hidden;
    margin-bottom: 14px;
    border-radius: 10px;
    background: #111827;
}

.scanner-camera {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px;
    color: var(--andar-white);
}

.scanner-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: none;
    object-fit: cover;
}

.scanner-active .scanner-video {
    display: block;
}

.scanner-camera::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.24), rgba(17, 24, 39, 0.58));
}

.scanner-frame {
    position: relative;
    z-index: 1;
    width: 190px;
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.75);
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.16);
}

.scanner-frame .ion {
    font-size: 42px;
}

.scanner-corner {
    position: absolute;
    width: 118px;
    height: 118px;
    border: 4px solid var(--andar-orange);
    border-radius: 14px;
}

.scanner-camera p {
    position: relative;
    z-index: 1;
    max-width: 260px;
    margin: 0;
    text-align: center;
    font-size: 12px;
    line-height: 17px;
    font-weight: 700;
}

.scanner-start-button,
.scanner-switch-button {
    position: relative;
    z-index: 1;
    min-height: 38px;
    padding: 0 16px;
    border: 0;
    border-radius: 7px;
    color: var(--andar-ink);
    background: var(--andar-orange);
    font-family: inherit;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
}

.scanner-switch-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    color: var(--andar-white);
    background: rgba(17, 24, 39, 0.58);
}

.scanner-switch-button[hidden] {
    display: none;
}

.scanner-switch-button .ion {
    font-size: 15px;
}

.scanner-manual-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.scanner-manual-card h2 {
    margin-bottom: 0;
}

.scanner-helper-text {
    margin: 0;
    color: var(--andar-muted);
    font-size: 12px;
    line-height: 17px;
    font-weight: 700;
}

.scanner-input {
    width: 100%;
    min-height: 44px;
    margin-bottom: 2px;
    padding: 0 12px;
    border: 1px solid #dfe5ee;
    border-radius: 7px;
    color: var(--andar-ink);
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
}

.scanner-session-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 12px;
    border: 1px solid var(--andar-line);
    border-radius: 12px;
    background: var(--andar-white);
    box-shadow: var(--andar-shadow);
}

.scanner-session-hero {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 14px;
    border-radius: 10px;
    background: linear-gradient(135deg, #fff7d6 0%, #f7fbff 100%);
}

.scanner-session-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.scanner-session-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--andar-navy);
    background: var(--andar-white);
    box-shadow: 0 8px 18px rgba(7, 31, 73, 0.1);
    font-size: 24px;
}

.scanner-session-badge {
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    padding: 0 11px;
    border-radius: 999px;
    color: var(--andar-green);
    background: var(--andar-green-soft);
    font-size: 10px;
    line-height: 13px;
    font-weight: 900;
}

.scanner-session-copy span,
.scanner-session-meta small {
    color: var(--andar-muted);
    font-size: 11px;
    line-height: 15px;
    font-weight: 800;
}

.scanner-session-copy h2 {
    margin: 4px 0 2px;
    color: var(--andar-navy);
    font-size: 24px;
    line-height: 28px;
    font-weight: 900;
    overflow-wrap: anywhere;
}

.scanner-session-copy p,
.scanner-session-card > p {
    margin: 0;
    color: var(--andar-muted);
    font-size: 12px;
    line-height: 17px;
    font-weight: 700;
}

.scanner-session-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.scanner-session-meta div {
    min-height: 74px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 10px;
    border: 1px solid var(--andar-line);
    border-radius: 8px;
    background: #f8fafc;
}

.scanner-session-meta .ion {
    color: var(--andar-orange);
    font-size: 17px;
}

.scanner-session-meta strong {
    color: var(--andar-navy);
    font-size: 12px;
    line-height: 16px;
    font-weight: 900;
}

.scanner-session-card form {
    margin: 4px 0 0;
}

.scanner-timeout-button {
    gap: 8px;
}

.scanner-timeout-button .ion {
    font-size: 17px;
}

.confirm-dialog {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(7, 31, 73, 0.48);
}

.confirm-dialog-card {
    width: min(100%, 340px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 22px 18px 18px;
    border-radius: 12px;
    background: var(--andar-white);
    box-shadow: 0 28px 80px rgba(7, 31, 73, 0.28);
    text-align: center;
}

.confirm-dialog-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: #8a5a00;
    background: var(--andar-orange-soft);
    font-size: 26px;
}

.confirm-dialog-card h2 {
    margin: 4px 0 0;
    color: var(--andar-navy);
    font-size: 18px;
    line-height: 22px;
    font-weight: 900;
}

.confirm-dialog-card p {
    margin: 0;
    color: var(--andar-muted);
    font-size: 12px;
    line-height: 17px;
    font-weight: 700;
}

.confirm-dialog-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 8px;
}

.confirm-dialog-actions button {
    width: 100%;
    min-height: 44px;
    border: 0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 12px;
    line-height: 16px;
    font-weight: 900;
    cursor: pointer;
}

.confirm-dialog-cancel {
    color: var(--andar-navy);
    background: #eef3fb;
}

.confirm-dialog-ok {
    color: var(--andar-ink);
    background: var(--andar-orange);
}

.confirm-dialog-open {
    overflow: hidden;
}

.empty-card {
    text-align: center;
}

.dashboard-empty-card {
    min-height: 96px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
}

.dashboard-empty-card .empty-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    border-radius: 12px;
    color: #8a5a00;
    background: var(--andar-orange-soft);
    font-size: 18px;
}

.dashboard-empty-copy {
    flex: 1;
    min-width: 0;
}

.dashboard-empty-card h3 {
    margin: 0 0 4px;
    color: var(--andar-navy);
    font-size: 14px;
    line-height: 18px;
    font-weight: 900;
}

.dashboard-empty-card p {
    max-width: 240px;
    margin: 0;
    color: var(--andar-muted);
    font-size: 12px;
    line-height: 17px;
    font-weight: 700;
}

.dashboard-empty-card form {
    width: 100%;
    margin-top: 4px;
}

.dashboard-contact-button {
    margin-top: -2px;
}

.trips-empty-card {
    min-height: 116px;
}

.empty-icon {
    display: block;
    margin-bottom: 8px;
    color: var(--andar-orange);
    font-size: 28px;
}

.empty-card h3,
.empty-card p {
    margin: 0 0 8px;
}

.disabled-link {
    pointer-events: none;
    opacity: 0.55;
}

.trip-blocked-note {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    padding: 10px 14px;
    border: 1px solid var(--andar-line);
    border-radius: 15px;
    color: var(--andar-muted);
    background: #f8fafc;
    font-size: 13px;
    font-weight: 900;
}

.primary-action,
.outline-action {
    width: 100%;
    min-height: 44px;
    margin-top: 10px;
    border-radius: 7px;
    font-weight: 800;
}

.primary-action {
    border: 0;
    color: #fff;
    background: linear-gradient(180deg, #ff7c1a, #ff5f0b);
}

.outline-action {
    border: 1px solid #ff6a13;
    color: #102044;
    background: #fff;
}

.dispatch-modal[hidden] {
    display: none;
}

.dispatch-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: 22px;
}

.dispatch-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, .54);
}

.dispatch-modal-panel {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 16px;
    width: min(460px, 100%);
    padding: 20px;
    border: 1px solid #d8e2ef;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(15, 23, 42, .24);
}

.dispatch-modal-panel header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.dispatch-modal-panel header small,
.dispatch-modal-panel label {
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.dispatch-modal-panel h3,
.dispatch-modal-panel p {
    margin: 0;
}

.dispatch-modal-panel h3 {
    color: #102044;
    font-size: 20px;
    font-weight: 900;
}

.dispatch-modal-panel p {
    margin-top: 4px;
    color: #526783;
    font-size: 13px;
    font-weight: 700;
    text-transform: none;
}

.dispatch-modal-panel header button {
    width: 34px;
    height: 34px;
    border: 1px solid #d8e2ef;
    border-radius: 8px;
    color: #102044;
    background: #fff;
    font-size: 16px;
    font-weight: 900;
}

.dispatch-modal-panel label {
    display: grid;
    gap: 7px;
}

.dispatch-modal-panel select,
.dispatch-modal-panel input,
.dispatch-modal-panel textarea {
    width: 100%;
    min-height: 42px;
    border: 1px solid #d8e2ef;
    border-radius: 8px;
    background: #fff;
    color: #102044;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 12px;
    text-transform: none;
}

.dispatch-modal-panel textarea {
    min-height: 92px;
    resize: vertical;
}

.dispatch-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.dispatch-modal-actions button {
    min-height: 40px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 900;
}

.dispatch-modal-actions a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 10px 14px;
    border: 1px solid #d8e2ef;
    border-radius: 8px;
    color: #102044;
    background: #fff;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
}

.xendit-payment-modal-panel {
    width: min(520px, 100%);
}

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

.xendit-modal-summary article,
.xendit-modal-note {
    min-width: 0;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #f8fafc;
}

.xendit-modal-summary small,
.xendit-modal-note span {
    display: block;
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
}

.xendit-modal-summary strong,
.xendit-modal-note strong {
    display: block;
    color: #102044;
    font-size: 13px;
    font-weight: 900;
    overflow-wrap: anywhere;
}

.xendit-payment-modal-panel em {
    color: #b91c1c;
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
    text-transform: none;
}

.driver-xendit-modal {
    gap: 14px;
    width: min(100%, 486px);
    max-height: calc(100vh - 42px);
    overflow-y: auto;
    padding: 18px;
    border: 1px solid rgba(7, 31, 73, 0.08);
    border-radius: 16px;
    box-shadow: 0 24px 80px rgba(7, 31, 73, 0.26);
}

.driver-xendit-modal header {
    align-items: flex-start;
    gap: 12px;
}

.driver-xendit-modal header small {
    color: var(--andar-muted);
    font-size: 10px;
    line-height: 13px;
    font-weight: 900;
    letter-spacing: 0;
}

.driver-xendit-modal h3 {
    margin-top: 2px;
    color: var(--andar-navy);
    font-size: 19px;
    line-height: 24px;
    font-weight: 900;
}

.driver-xendit-modal p {
    margin-top: 5px;
    color: var(--andar-muted);
    font-size: 12px;
    line-height: 16px;
    font-weight: 800;
}

.driver-xendit-modal header button {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-color: var(--andar-line);
    border-radius: 10px;
    color: var(--andar-navy);
    background: var(--andar-white);
    font-size: 20px;
    cursor: pointer;
}

.driver-xendit-modal .xendit-modal-summary {
    gap: 8px;
}

.driver-xendit-modal .xendit-modal-summary article,
.driver-xendit-modal .xendit-modal-note {
    padding: 12px;
    border-color: var(--andar-line);
    border-radius: 10px;
    background: #f8fafc;
}

.driver-xendit-modal .xendit-modal-summary small,
.driver-xendit-modal .xendit-modal-note span {
    color: var(--andar-muted);
    font-size: 10px;
    line-height: 14px;
    font-weight: 900;
}

.driver-xendit-modal .xendit-modal-summary strong,
.driver-xendit-modal .xendit-modal-note strong {
    color: var(--andar-navy);
    font-size: 13px;
    line-height: 18px;
    font-weight: 900;
}

.driver-xendit-modal .xendit-field {
    gap: 7px;
    color: var(--andar-muted);
    font-size: 10px;
    line-height: 14px;
    font-weight: 900;
    letter-spacing: 0;
}

.driver-xendit-modal .xendit-field > span {
    display: block;
}

.driver-xendit-modal input,
.driver-xendit-modal select {
    min-height: 46px;
    border-color: var(--andar-line);
    border-radius: 10px;
    color: var(--andar-navy);
    background: var(--andar-white);
    font-size: 13px;
    line-height: 18px;
    font-weight: 900;
}

.driver-xendit-modal .dispatch-modal-actions {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 10px;
    margin-top: 2px;
}

.driver-xendit-modal .dispatch-modal-actions button {
    min-height: 46px;
    margin: 0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 12px;
    line-height: 16px;
    font-weight: 900;
    cursor: pointer;
}

.driver-xendit-modal .dispatch-modal-actions button[type="button"] {
    border: 1px solid var(--andar-line);
    color: var(--andar-navy);
    background: var(--andar-white);
}

.driver-xendit-modal .dispatch-modal-actions .primary-action {
    border: 0;
    color: var(--andar-ink);
    background: var(--andar-orange);
}

@media (max-width: 520px) {
    .payment-section-heading {
        align-items: flex-start;
    }

    .payment-heading-actions {
        max-width: 100%;
    }

    .xendit-modal-summary {
        grid-template-columns: 1fr;
    }

    .driver-xendit-modal {
        width: 100%;
        padding: 16px;
    }
}

@media (min-width: 521px) {
    .app-frame {
        border-left: 1px solid var(--andar-line);
        border-right: 1px solid var(--andar-line);
    }
}

@media (max-width: 380px) {
    .screen {
        padding-left: 14px;
        padding-right: 14px;
    }

    .summary-row {
        gap: 6px;
    }

    .stat {
        padding: 9px 8px;
    }

    .stat-label {
        font-size: 9px;
    }

    .stat-value,
    .earning-right strong {
        font-size: 12px;
    }

    .filter-pills {
        gap: 6px;
    }

    .filter-pills a {
        font-size: 9px;
    }

    .balance-value-light {
        font-size: 21px;
    }

    .earning-row {
        gap: 8px;
        padding: 12px;
    }

    .driver-xendit-modal .dispatch-modal-actions {
        grid-template-columns: 1fr;
    }

    .commission-pagination {
        grid-template-columns: minmax(34px, auto) minmax(0, 1fr) minmax(34px, auto);
        gap: 5px;
        padding: 6px;
    }

    .commission-page-button {
        min-width: 34px;
        padding: 7px 6px;
    }

    .commission-page-button > span:not(.ion) {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
    }
}

.cancel-payment-form {
    display: block;
}

.cancel-payment-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 14px;
}

.cancel-payment-card .payment-section-heading {
    align-items: flex-start;
    gap: 12px;
    margin: 0;
}

.cancel-payment-card .payment-section-heading span {
    display: block;
    color: var(--andar-navy);
    font-size: 15px;
    line-height: 20px;
    font-weight: 700;
}

.cancel-payment-card .payment-section-heading h2 {
    margin: 1px 0 0;
    color: var(--andar-navy);
    font-size: 12px;
    line-height: 16px;
    font-weight: 900;
}

.cancel-payment-card .payment-section-heading strong {
    flex: 0 0 auto;
    color: var(--andar-navy);
    font-size: 15px;
    line-height: 20px;
    font-weight: 900;
    white-space: nowrap;
}

.cancel-payment-card .compact-detail-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
}

.cancel-payment-card .detail-row {
    min-height: 38px;
    gap: 8px;
    padding-top: 6px;
}

.cancel-payment-card .detail-row:first-of-type {
    padding-top: 0;
}

.cancel-payment-card .detail-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 8px;
    font-size: 18px;
}

.cancel-payment-card .detail-label {
    min-width: 0;
    color: var(--andar-muted);
    font-size: 11px;
    line-height: 15px;
    font-weight: 800;
}

.cancel-payment-card .detail-value {
    max-width: 58%;
    color: var(--andar-navy);
    font-size: 12px;
    line-height: 16px;
    font-weight: 900;
}

.cancel-payment-card .completion-payment-list {
    gap: 0;
    margin: 0;
}

.cancel-payment-card .payment-row {
    min-height: 48px;
    gap: 8px;
    padding: 8px 10px;
    cursor: default;
}

.cancel-payment-card .payment-row > span:first-child {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.cancel-payment-card .payment-icon {
    width: 22px;
    flex: 0 0 22px;
    font-size: 17px;
}

.cancel-payment-card .payment-row strong {
    display: block;
    font-size: 12px;
    line-height: 16px;
    font-weight: 900;
}

.cancel-payment-card .payment-row small {
    display: block;
    margin-top: 1px;
    color: var(--andar-navy);
    font-size: 10px;
    line-height: 14px;
    font-weight: 800;
    white-space: normal;
}

.cancel-payment-card .payment-row input[type="radio"] {
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    margin: 0;
}

.cancel-payment-card .completion-payment-fields {
    gap: 10px;
    margin-top: 0;
}

.cancel-payment-card .payment-detail-fields {
    gap: 6px;
}

.cancel-payment-card .payment-detail-fields label {
    gap: 6px;
    font-size: 10px;
    line-height: 14px;
}

.cancel-payment-card .payment-detail-fields input {
    min-height: 40px;
    padding: 0 10px;
    font-size: 12px;
    line-height: 16px;
}

.cancel-payment-card .payment-field-warning {
    margin-top: 2px;
    font-size: 10px;
    line-height: 14px;
}

.cancel-payment-card .completion-proof-grid {
    margin: 0;
}

.cancel-payment-card .pickup-payment-proof .upload-card {
    min-height: 160px;
    padding: 12px;
    gap: 9px;
}

.cancel-payment-card .proof-main {
    gap: 6px;
}

.cancel-payment-card .proof-icon {
    width: 40px;
    height: 40px;
    border-radius: 9px;
    font-size: 18px;
}

.cancel-payment-card .upload-title {
    font-size: 12px;
    line-height: 16px;
}

.cancel-payment-card .upload-sub {
    font-size: 10px;
    line-height: 14px;
    font-weight: 800;
}

.cancel-payment-card .required-proof {
    font-size: 9px;
    line-height: 12px;
}

.cancel-payment-card .proof-actions {
    gap: 6px;
    margin-top: 7px;
}

.cancel-payment-card .proof-action {
    min-height: 28px;
    font-size: 9px;
    line-height: 12px;
}

.cancel-payment-form > .swipe-action {
    height: 58px;
    margin-top: 12px;
}

.cancel-payment-form > .swipe-action .swipe-label,
.cancel-payment-form > .swipe-action button,
.cancel-payment-form > .swipe-action span {
    font-size: 13px;
    line-height: 17px;
}