/* Generated app-ui stylesheet. Do not edit directly. */

/* components/action-progress/action-progress.css */
.action-progress {
    align-items: center;
    background: rgba(255, 255, 255, .94);
    display: flex;
    inset: 0;
    justify-content: center;
    position: fixed;
    z-index: 1000;
}

.action-progress__content {
    align-items: center;
    color: var(--color-ink, #172640);
    display: flex;
    flex-direction: column;
    font-weight: 700;
    gap: 1rem;
    padding: 2rem;
    text-align: center;
}

.action-progress__spinner {
    animation: action-progress-spin .75s linear infinite;
    border: 4px solid rgba(36, 87, 214, .18);
    border-radius: 50%;
    border-top-color: #2457d6;
    height: 2.5rem;
    width: 2.5rem;
}

@keyframes action-progress-spin {
    to { transform: rotate(360deg); }
}

/* styles/tokens.css */
:root {
    --ink: #172640;
    --muted: #637083;
    --line: #dfe5ec;
    --canvas: #f4f6f8;
    --surface: #ffffff;
    --nav: #142239;
    --nav-soft: #223552;
    --accent: #00a889;
    --accent-soft: #dff7f1;
    --blue: #2d61d6;
    --amber: #d58711;
    --danger: #bd3a49;
    --radius: 16px;
    --shadow: 0 10px 30px rgba(23, 38, 64, .08);
    color-scheme: light;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* styles/base.css */
* { box-sizing: border-box; }
body { margin: 0; color: var(--ink); background: var(--canvas); }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid rgba(45, 97, 214, .35); outline-offset: 2px; }
.eyebrow { margin: 0; color: var(--accent); font-size: 11px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.status-dot { display: inline-block; width: 8px; height: 8px; margin-right: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(0,168,137,.12); }
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

/* components/brand/brand.css */
.brand { display: flex; align-items: center; gap: 12px; padding: 0 10px 26px; color: inherit; text-decoration: none; }
.brand__logo { width: 82px; height: 62px; object-fit: contain; border-radius: 9px; }
.brand__text { display: grid; gap: 1px; }
.brand__text strong { font-size: 18px; letter-spacing: .01em; }
.brand__text small { color: #aebbd0; font-size: 12px; }
.brand--public { display: inline-flex; padding: 0; }
.brand--public .brand__logo { width: 92px; height: 69px; }
.brand--public .brand__text small { color: var(--muted); }

/* components/brand-attribution/brand-attribution.css */
.brand-attribution { display: block; width: 168px; height: auto; object-fit: contain; }
.sidebar__footer .brand-attribution { margin-top: 16px; filter: drop-shadow(0 4px 10px rgba(0,0,0,.15)); }
.public-footer { display: flex; justify-content: center; padding: 0 24px 28px; }

/* components/button/button.css */
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 40px; padding: 9px 15px; border: 1px solid transparent; border-radius: 10px; color: #fff; background: var(--blue); text-decoration: none; font-weight: 750; cursor: pointer; }
.button--quiet { color: var(--ink); border-color: var(--line); background: #fff; }
.button--quiet:hover { background: #f6f8fb; }

/* components/app-shell/app-shell.css */
.app-frame { display: grid; grid-template-columns: 260px minmax(0, 1fr); min-height: 100vh; }
.sidebar { position: sticky; top: 0; height: 100vh; display: flex; flex-direction: column; padding: 28px 18px 20px; color: #fff; background: var(--nav); }
.sidebar__footer { margin-top: auto; padding: 18px 10px 0; border-top: 1px solid rgba(255,255,255,.1); color: #aebbd0; font-size: 11px; }
.workspace { min-width: 0; }
.topbar { display: flex; align-items: center; justify-content: space-between; min-height: 96px; padding: 20px 34px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.9); }
.topbar h1 { margin: 2px 0 0; font-size: clamp(22px, 3vw, 30px); letter-spacing: -.025em; }
.workspace__content { padding: 28px 34px 48px; }
.public-header { padding: 26px clamp(22px, 5vw, 72px); }
.public-main { display: grid; min-height: calc(100vh - 100px); place-items: center; padding: 24px; }
@media (max-width: 760px) {
    .app-frame { grid-template-columns: 1fr; }
    .sidebar { position: static; width: 100%; height: auto; padding: 16px; }
    .sidebar .brand { padding-bottom: 14px; }
    .sidebar__footer { display: none; }
    .topbar { align-items: flex-start; padding: 18px 20px; }
    .workspace__content { padding: 20px; }
}

/* components/navigation/navigation.css */
.sidebar__nav { display: grid; gap: 5px; }
.nav-item { display: flex; align-items: center; gap: 11px; min-height: 44px; padding: 10px 12px; border-radius: 10px; color: #d9e1ed; text-decoration: none; font-size: 14px; font-weight: 650; }
.nav-item:hover { background: var(--nav-soft); color: #fff; }
.nav-item.is-active { color: #fff; background: var(--nav-soft); box-shadow: inset 3px 0 var(--accent); }
.nav-item.is-disabled { color: #8e9cb0; cursor: default; }
.nav-item small { margin-left: auto; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.nav-item__icon { display: grid; width: 24px; height: 24px; place-items: center; border-radius: 7px; background: rgba(255,255,255,.08); font-size: 12px; }
@media (max-width: 760px) {
    .sidebar__nav { display: flex; overflow-x: auto; padding-bottom: 4px; }
    .nav-item { flex: 0 0 auto; }
    .nav-item small { display: none; }
}

/* components/account-menu/account-menu.css */
.account-menu { display: flex; align-items: center; gap: 9px; }
.account-menu form { margin: 0; }
.user-chip { display: flex; align-items: center; gap: 8px; color: var(--ink); font-size: 13px; font-weight: 700; }
.user-chip > span { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; color: #fff; background: var(--blue); }
@media (max-width: 760px) {
    .account-menu__account, .user-chip { display: none; }
}

/* components/notice/notice.css */
.notice { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 22px; padding: 14px 16px; border: 1px solid #b9e9dd; border-radius: 12px; color: #176959; background: var(--accent-soft); font-size: 13px; }
.notice strong { display: block; margin-bottom: 2px; }

/* components/metric-card/metric-card.css */
.metrics { display: grid; grid-template-columns: repeat(5, minmax(150px, 1fr)); gap: 14px; margin-bottom: 22px; }
.metric { padding: 18px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow); }
.metric__label { margin: 0; color: var(--muted); font-size: 12px; font-weight: 700; }
.metric__value { margin: 7px 0 2px; font-size: 30px; font-weight: 800; letter-spacing: -.04em; }
.metric__meta { color: var(--muted); font-size: 11px; }
.metric--accent { border-top: 3px solid var(--accent); }
.metric--blue { border-top: 3px solid var(--blue); }
.metric--amber { border-top: 3px solid var(--amber); }
.metric--danger { border-top: 3px solid var(--danger); }
@media (max-width: 1100px) { .metrics { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .metrics { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .metrics { grid-template-columns: 1fr; } }

/* components/panel/panel.css */
.dashboard-grid { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 18px; }
.panel { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow); }
.panel__header { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 20px; border-bottom: 1px solid var(--line); }
.panel__header h2 { margin: 0; font-size: 17px; }
.panel__header p { margin: 3px 0 0; color: var(--muted); font-size: 12px; }
@media (max-width: 1100px) { .dashboard-grid { grid-template-columns: 1fr; } }
@media (max-width: 760px) { .panel__header { align-items: flex-start; flex-direction: column; } }

/* components/filter-chips/filter-chips.css */
.filter-row { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-chip { padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: #fff; font-size: 11px; font-weight: 750; }
.filter-chip.is-active { color: #176959; border-color: #a6dfd2; background: var(--accent-soft); }
.filter-chip:disabled { cursor: default; opacity: 1; }

/* components/fleet-timeline/fleet-timeline.css */
.timeline { min-width: 700px; padding: 0 20px 18px; }
.timeline-scroll { overflow-x: auto; }
.timeline__head, .timeline__row { display: grid; grid-template-columns: 190px repeat(7, minmax(72px, 1fr)); align-items: center; }
.timeline__head { min-height: 44px; color: var(--muted); border-bottom: 1px solid var(--line); font-size: 10px; font-weight: 800; text-align: center; text-transform: uppercase; }
.timeline__head span:first-child { text-align: left; }
.timeline__row { min-height: 58px; border-bottom: 1px solid #edf0f4; }
.vehicle { display: grid; gap: 2px; padding-right: 12px; font-size: 12px; font-weight: 800; }
.vehicle small { color: var(--muted); font-weight: 500; }
.slot { height: 28px; margin: 0 3px; border-radius: 7px; background: #eef2f5; }
.slot--available { background: #e2f6f0; }
.slot--reserved { background: #dce6fb; }
.slot--maintenance { background: #fae8c7; }
.slot span { display: block; overflow: hidden; padding: 7px 8px; color: #24426c; font-size: 10px; font-weight: 800; white-space: nowrap; text-overflow: ellipsis; }

/* components/task-list/task-list.css */
.task-list { list-style: none; margin: 0; padding: 8px 20px 20px; }
.task-list li { display: grid; grid-template-columns: 38px 1fr; gap: 10px; padding: 13px 0; border-bottom: 1px solid #edf0f4; }
.task-list li:last-child { border-bottom: 0; }
.task-icon { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 10px; color: #176959; background: var(--accent-soft); font-size: 12px; font-weight: 800; }
.task-list strong { display: block; font-size: 13px; }
.task-list small { display: block; margin-top: 3px; color: var(--muted); font-size: 11px; line-height: 1.4; }

/* components/login-card/login-card.css */
.login-card { display: grid; grid-template-columns: minmax(280px, 1fr) minmax(300px, 1.15fr); width: min(920px, 100%); overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: 0 24px 70px rgba(23,38,64,.13); }
.login-card__copy { padding: clamp(30px, 6vw, 64px); }
.login-card__copy .eyebrow { margin-bottom: 12px; }
.login-card h1 { margin: 0 0 16px; font-size: clamp(34px, 5vw, 54px); line-height: 1.02; letter-spacing: -.05em; }
.login-card p { color: var(--muted); line-height: 1.65; }
.login-card .button { margin-top: 12px; }
.login-card__visual { position: relative; display: grid; align-content: end; min-height: 450px; padding: 40px; color: #fff; background: radial-gradient(circle at 85% 10%, rgba(0,168,137,.55), transparent 30%), linear-gradient(145deg, #1d3150, #0f1c30); }
.visual-grid { position: absolute; inset: 30px; opacity: .35; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 42px 42px; mask-image: linear-gradient(to bottom, black, transparent); }
.login-card__visual strong { position: relative; max-width: 350px; font-size: 26px; line-height: 1.2; }
.login-card__visual small { position: relative; margin-top: 10px; color: #b9c9dd; line-height: 1.5; }
@media (max-width: 760px) {
    .login-card { grid-template-columns: 1fr; }
    .login-card__visual { min-height: 260px; }
}
@media (max-width: 460px) { .login-card__copy { padding: 30px 24px; } }

/* components/error-state/error-state.css */
.error-state { width: min(560px, 100%); padding: 40px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); box-shadow: var(--shadow); text-align: center; }
.error-state__code { color: var(--accent); font-size: 13px; font-weight: 850; letter-spacing: .12em; }
.error-state h1 { margin: 10px 0; font-size: clamp(28px, 5vw, 42px); letter-spacing: -.04em; }
.error-state p { margin: 0 0 24px; color: var(--muted); line-height: 1.6; }

/* components/lazy-section/lazy-section.css */
.lazy-section { min-height: 150px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow); }
.lazy-section--metrics { min-height: 130px; margin-bottom: 22px; }
.lazy-section--panel { min-height: 330px; }
.lazy-section__skeleton { display: grid; gap: 13px; padding: 24px; }
.lazy-section__skeleton span { height: 18px; border-radius: 8px; background: linear-gradient(90deg, #edf1f5 25%, #f7f9fb 50%, #edf1f5 75%); background-size: 200% 100%; animation: lazy-pulse 1.4s ease-in-out infinite; }
.lazy-section__skeleton span:first-child { width: 38%; }
.lazy-section__skeleton span:nth-child(2) { height: 64px; }
.lazy-section__skeleton span:last-child { width: 72%; }
.lazy-section__fallback { padding: 0 24px 24px; }
.lazy-section__error { display: grid; gap: 10px; place-items: start; padding: 24px; color: var(--muted); }
.lazy-section__retry { padding: 7px 11px; border: 1px solid var(--line); border-radius: 8px; color: var(--ink); background: #fff; cursor: pointer; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
@keyframes lazy-pulse { from { background-position: 100% 0; } to { background-position: -100% 0; } }
@media (prefers-reduced-motion: reduce) { .lazy-section__skeleton span { animation: none; } }
