:root {
    --rp-ink: #17233c;
    --rp-line: #dbe3ef;
    --rp-soft: #f6f8fb;
    --rp-accent: #0f766e;
}

body {
    background: var(--rp-soft);
    color: var(--rp-ink);
}

.navbar {
    background: #ffffff;
    border-bottom: 1px solid var(--rp-line);
}

.brand-mark {
    align-items: center;
    background: var(--rp-accent);
    border-radius: 6px;
    color: #ffffff;
    display: inline-flex;
    font-size: 0.72rem;
    font-weight: 800;
    height: 28px;
    justify-content: center;
    margin-right: 0.55rem;
    width: 28px;
}

.page-title {
    letter-spacing: 0;
}

.metric-panel {
    background: #ffffff;
    border: 1px solid var(--rp-line);
    border-radius: 8px;
    height: 100%;
    padding: 1rem;
}

.metric-panel .metric-value {
    font-size: 1.65rem;
    font-weight: 750;
    line-height: 1.1;
}

.ops-panel {
    background: #ffffff;
    border: 1px solid var(--rp-line);
    border-radius: 8px;
    padding: 1rem;
}

.table thead th {
    color: #546179;
    font-size: 0.74rem;
    text-transform: uppercase;
}

.table td,
.table th {
    vertical-align: middle;
}

.form-label {
    color: #445169;
    font-weight: 650;
}

.status-dot {
    border-radius: 999px;
    display: inline-block;
    height: 10px;
    margin-right: 0.4rem;
    width: 10px;
}

.route-canvas-wrap {
    background: #f8fafc;
    border: 1px solid var(--rp-line);
    border-radius: 8px;
    min-height: 260px;
    overflow: hidden;
    position: relative;
}

.route-canvas {
    display: block;
    height: 280px;
    width: 100%;
}

.route-stop-list {
    border-left: 2px solid #c7d2e3;
    margin-left: 0.55rem;
    padding-left: 1rem;
}

.route-stop-list .route-stop {
    position: relative;
}

.route-stop-list .route-stop::before {
    background: #ffffff;
    border: 2px solid var(--rp-accent);
    border-radius: 50%;
    content: "";
    height: 12px;
    left: -1.43rem;
    position: absolute;
    top: 0.3rem;
    width: 12px;
}

.toolbar-sticky {
    position: sticky;
    top: 0.75rem;
}

.compact-input {
    min-width: 150px;
}

.print-page {
    background: #ffffff;
}

.print-sheet {
    margin: 0 auto;
    max-width: 1120px;
    padding: 24px;
}

@media print {
    body {
        background: #ffffff;
    }

    .d-print-none {
        display: none !important;
    }

    .print-sheet {
        max-width: none;
        padding: 0;
    }

    .ops-panel,
    .metric-panel,
    .route-canvas-wrap {
        border-color: #cbd5e1;
        box-shadow: none !important;
    }
}

@media (max-width: 767px) {
    .metric-panel .metric-value {
        font-size: 1.3rem;
    }

    .toolbar-sticky {
        position: static;
    }
}

