/* =============================================================
   业务员端 — 设计系统
   风格：monochrome editorial，纯白底 + 接近黑色的墨色文字 +
   一抹克制的绿色作为状态色；摒弃渐变与阴影堆叠
   ============================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #ffffff;
    --bg-subtle: #fafafa;
    --bg-muted: #f4f4f5;

    --border: #ececef;
    --border-strong: #d4d4d8;
    --border-soft: #f4f4f5;

    --text: #0a0a0a;
    --text-secondary: #3f3f46;
    --text-muted: #71717a;
    --text-faint: #a1a1aa;

    --accent: #0a0a0a;
    --accent-soft: #18181b;

    --positive: #166534;
    --positive-bg: #f0fdf4;
    --warning: #92400e;
    --warning-bg: #fffbeb;
    --danger: #991b1b;
    --danger-bg: #fef2f2;
    --info: #1e3a8a;
    --info-bg: #eff6ff;

    --radius: 4px;
    --radius-lg: 8px;
}

html,
body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.005em;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ---------------- 通用排版 ---------------- */
.label-tiny {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.h-display {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.h-title {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.h-section {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 24px 0 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.h-section:first-child {
    margin-top: 0;
}

.h-section .meta {
    color: var(--text-faint);
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    font-size: 12px;
}

.divider {
    height: 1px;
    background: var(--border);
    border: none;
    margin: 16px 0;
}

/* ---------------- 布局 ---------------- */
.layout-root {
    min-height: 100vh;
}

.app-sidebar {
    display: none;
}

.app-main {
    padding-bottom: 72px;
    min-height: 100vh;
}

.app-topbar {
    position: sticky;
    top: 0;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    padding: 0 20px;
    background: rgba(255, 255, 255, 0.92);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--border);
}

.app-topbar .title {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.app-topbar .who {
    font-size: 12px;
    color: var(--text-muted);
}

.app-tabbar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    display: flex;
    height: 60px;
    background: rgba(255, 255, 255, 0.96);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    backdrop-filter: saturate(180%) blur(12px);
    border-top: 1px solid var(--border);
    padding-bottom: env(safe-area-inset-bottom);
}

.app-tabbar .tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--text-muted);
    cursor: pointer;
}

.app-tabbar .tab .ico {
    width: 20px;
    height: 20px;
}

.app-tabbar .tab .lbl {
    font-size: 10px;
    letter-spacing: 0.02em;
}

.app-tabbar .tab.active {
    color: var(--text);
}

.app-tabbar .tab.active .ico {
    color: var(--text);
}

.app-page {
    padding: 24px 20px;
    max-width: 100%;
}

/* ---------------- 侧栏（PC） ---------------- */
@media (min-width: 960px) {
    .app-topbar {
        display: none;
    }

    .app-tabbar {
        display: none;
    }

    .app-main {
        padding-bottom: 0;
        margin-left: 240px;
    }

    .app-sidebar {
        display: flex;
        flex-direction: column;
        position: fixed;
        left: 0;
        top: 0;
        bottom: 0;
        width: 240px;
        background: var(--bg);
        border-right: 1px solid var(--border);
        z-index: 50;
    }

    .app-sidebar .brand {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 20px 20px;
        border-bottom: 1px solid var(--border);
    }

    .app-sidebar .brand .brand-logo {
        width: 36px;
        height: 36px;
        border-radius: 6px;
        object-fit: contain;
    }

    .app-sidebar .brand .name {
        font-size: 14px;
        font-weight: 600;
        letter-spacing: -0.01em;
    }

    .app-sidebar .brand .sub {
        font-size: 11px;
        color: var(--text-muted);
        letter-spacing: 0.06em;
        text-transform: uppercase;
    }

    .app-sidebar nav {
        flex: 1;
        padding: 12px 12px;
        overflow-y: auto;
    }

    .app-sidebar nav .nav-item {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 8px 10px;
        border-radius: 6px;
        margin-bottom: 2px;
        cursor: pointer;
        font-size: 13.5px;
        color: var(--text-secondary);
        transition: background 0.12s ease;
    }

    .app-sidebar nav .nav-item:hover {
        background: var(--bg-muted);
        color: var(--text);
    }

    .app-sidebar nav .nav-item .ico {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }

    .app-sidebar nav .nav-item.active {
        background: var(--bg-muted);
        color: var(--text);
        font-weight: 600;
    }

    .app-sidebar nav .nav-item.active .ico {
        color: var(--text);
    }

    .app-sidebar .side-footer {
        padding: 16px 20px;
        border-top: 1px solid var(--border);
    }

    .app-sidebar .side-footer .user {
        font-size: 13px;
        font-weight: 600;
        margin-bottom: 2px;
    }

    .app-sidebar .side-footer .role {
        font-size: 11px;
        color: var(--text-muted);
        margin-bottom: 10px;
    }

    .app-sidebar .side-footer .signout {
        font-size: 12px;
        color: var(--text-muted);
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 4px;
    }

    .app-sidebar .side-footer .signout:hover {
        color: var(--danger);
    }

    .app-page {
        padding: 32px 40px;
        max-width: 1180px;
    }
}

/* ---------------- 卡片 ---------------- */
.card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 12px;
}

.card-flush {
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    padding: 20px 0;
    margin: 0 -20px 12px;
}

@media (min-width: 960px) {
    .card-flush {
        margin: 0 0 12px;
    }
}

/* ---------------- 顶部招呼区 ---------------- */
.greeting {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
}

.greeting .left h1 {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin-bottom: 6px;
}

.greeting .left .sub {
    font-size: 13px;
    color: var(--text-muted);
}

.greeting .right {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ---------------- 状态徽章（细线条） ---------------- */
.tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 9px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.02em;
    border: 1px solid var(--border);
    background: var(--bg);
    color: var(--text-secondary);
}

.tag::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-muted);
}

.tag.green {
    border-color: rgba(22, 101, 52, 0.2);
    background: var(--positive-bg);
    color: var(--positive);
}

.tag.green::before {
    background: var(--positive);
}

.tag.orange {
    border-color: rgba(146, 64, 14, 0.2);
    background: var(--warning-bg);
    color: var(--warning);
}

.tag.orange::before {
    background: var(--warning);
}

.tag.red {
    border-color: rgba(153, 27, 27, 0.2);
    background: var(--danger-bg);
    color: var(--danger);
}

.tag.red::before {
    background: var(--danger);
}

.tag.solid {
    background: var(--text);
    color: #fff;
    border-color: var(--text);
}

.tag.solid::before {
    background: #fff;
}

/* ---------------- 统计 ---------------- */
.metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 22px 0;
    margin-bottom: 28px;
}

.metric {
    padding: 0 18px;
    border-left: 1px solid var(--border);
}

.metric:first-child {
    border-left: none;
    padding-left: 0;
}

.metric .num {
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--text);
    font-variant-numeric: tabular-nums;
}

.metric .lbl {
    margin-top: 6px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

@media (min-width: 960px) {
    .metric .num {
        font-size: 34px;
    }
}

/* ---------------- 快捷入口 ---------------- */
.quick-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 24px;
}

.quick {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.15s ease;
}

.quick:hover {
    border-color: var(--text);
}

.quick .ico {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 6px;
    flex-shrink: 0;
}

.quick .ico svg {
    width: 16px;
    height: 16px;
}

.quick .t {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2px;
}

.quick .d {
    font-size: 11.5px;
    color: var(--text-muted);
}

@media (min-width: 960px) {
    .quick-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }
}

/* ---------------- 城市列表 ---------------- */
.city-list .city-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-soft);
}

.city-list .city-row:last-child {
    border-bottom: none;
}

.city-list .city-row .left .name {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text);
}

.city-list .city-row .left .province {
    font-size: 11.5px;
    color: var(--text-muted);
    margin-top: 2px;
}

.city-list .city-row .counts {
    font-size: 12px;
    color: var(--text-secondary);
    font-variant-numeric: tabular-nums;
}

.city-list .city-row .counts b {
    color: var(--text);
    font-weight: 600;
    margin: 0 2px;
}

/* ---------------- 筛选 ---------------- */
.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.search-box {
    flex: 1;
    min-width: 200px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0 12px;
    height: 36px;
    transition: border-color 0.12s;
}

.search-box:focus-within {
    border-color: var(--text);
}

.search-box .ico {
    color: var(--text-muted);
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 13.5px;
    background: transparent;
    color: var(--text);
}

.search-box input::placeholder {
    color: var(--text-faint);
}

.filters select {
    height: 36px;
    border: 1px solid var(--border);
    outline: none;
    background: var(--bg);
    border-radius: 6px;
    padding: 0 28px 0 12px;
    font-size: 13.5px;
    color: var(--text);
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%2371717a' stroke-width='1.5'%3e%3cpath d='M4 6l4 4 4-4'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 14px;
}

.filters select:focus {
    border-color: var(--text);
}

/* ---------------- 学校/门店卡片 ---------------- */
.entity-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 16px;
}

@media (min-width: 960px) {
    .entity-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (min-width: 1280px) {
    .entity-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.entity {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 18px 20px;
    transition: border-color 0.15s;
}

.entity:hover {
    border-color: var(--border-strong);
}

.entity-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.entity-name {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--text);
    line-height: 1.35;
}

.entity-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.entity-info {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-top: 4px;
}

.entity-info .row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.entity-info .ico {
    width: 12px;
    height: 12px;
    color: var(--text-faint);
    flex-shrink: 0;
}

.entity-actions {
    display: flex;
    gap: 8px;
    margin-top: 14px;
}

/* ---------------- 最近门店列表（学校卡片内） ---------------- */
.nearest {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--border-soft);
}

.nearest-title {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.nearest-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-soft);
}

.nearest-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.nearest-item .left {
    flex: 1;
    min-width: 0;
}

.nearest-item .name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 6px;
}

.nearest-item .name .rank {
    font-size: 10.5px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    font-variant-numeric: tabular-nums;
    min-width: 16px;
}

.nearest-item .name .type {
    font-size: 10.5px;
    color: var(--text-muted);
    border: 1px solid var(--border);
    padding: 1px 6px;
    border-radius: 3px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.nearest-item .meta {
    font-size: 11.5px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-top: 2px;
}

.nearest-item .right {
    text-align: right;
    white-space: nowrap;
    flex-shrink: 0;
}

.nearest-item .dist {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.01em;
    font-variant-numeric: tabular-nums;
}

.nearest-item .dist-unit {
    font-size: 10.5px;
    color: var(--text-muted);
    margin-top: 1px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nearest-item .nav-btn {
    margin-top: 6px;
}

/* ---------------- 按钮 ---------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 34px;
    padding: 0 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid var(--border);
    background: var(--bg);
    color: var(--text);
    cursor: pointer;
    transition: all 0.12s;
    white-space: nowrap;
}

.btn:hover {
    border-color: var(--text);
}

.btn-primary {
    background: var(--text);
    border-color: var(--text);
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent-soft);
}

.btn-danger {
    color: var(--danger);
    border-color: var(--border);
}

.btn-danger:hover {
    border-color: var(--danger);
}

.btn-sm {
    height: 28px;
    padding: 0 10px;
    font-size: 12px;
    border-radius: 4px;
}

.btn-block {
    width: 100%;
}

.btn-ico {
    width: 14px;
    height: 14px;
}

.btn-stack {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* ---------------- 加载更多 ---------------- */
.load-more {
    text-align: center;
    padding: 18px 0;
    color: var(--text-muted);
    font-size: 13px;
    cursor: pointer;
    border-top: 1px solid var(--border);
    margin-top: 8px;
}

.load-more:hover {
    color: var(--text);
}

.empty {
    text-align: center;
    color: var(--text-muted);
    padding: 36px 20px;
    font-size: 13px;
    border: 1px dashed var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
}

/* ---------------- 个人信息 ---------------- */
.info-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-soft);
    font-size: 13.5px;
}

.info-row:last-child {
    border-bottom: none;
}

.info-row .k {
    color: var(--text-muted);
}

.info-row .v {
    color: var(--text);
    font-weight: 500;
    text-align: right;
}

.feature-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-soft);
}

.feature-row:last-child {
    border-bottom: none;
}

.feature-row .label {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text);
}

.feature-row .desc {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ---------------- 登录 / 注册 ---------------- */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 20px;
    background: var(--bg);
}

.auth-card {
    width: 100%;
    max-width: 380px;
}

.auth-header {
    text-align: center;
    margin-bottom: 28px;
}

.auth-header .brand-logo {
    width: 40px;
    height: 40px;
    margin: 0 auto 14px;
    border-radius: 8px;
    object-fit: contain;
    background: var(--bg-muted);
    padding: 6px;
}

.auth-header h1 {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text);
}

.auth-header p {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 6px;
    letter-spacing: 0.04em;
}

.auth-panel {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.auth-tabs {
    display: flex;
    background: var(--bg-muted);
    border-radius: 6px;
    padding: 3px;
    margin-bottom: 20px;
}

.auth-tabs .tab {
    flex: 1;
    text-align: center;
    padding: 8px 0;
    font-size: 13px;
    color: var(--text-muted);
    border-radius: 4px;
    cursor: pointer;
}

.auth-tabs .tab.active {
    background: var(--bg);
    color: var(--text);
    font-weight: 600;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.auth-tip {
    text-align: center;
    margin-top: 16px;
    font-size: 12.5px;
    color: var(--text-muted);
}

.auth-tip a {
    color: var(--text);
    font-weight: 500;
    cursor: pointer;
    border-bottom: 1px solid var(--border);
}

.captcha-img {
    height: 30px;
    width: auto;
    max-width: 84px;
    cursor: pointer;
    border-radius: 4px;
    object-fit: contain;
    border: 1px solid var(--border);
}

/* ---------------- Vant 主题覆盖 ---------------- */
.van-button--primary {
    background: var(--text) !important;
    border-color: var(--text) !important;
}

.van-button--default {
    background: var(--bg) !important;
    border-color: var(--border) !important;
    color: var(--text) !important;
}

.van-button--danger {
    background: var(--bg) !important;
    border-color: var(--border) !important;
    color: var(--danger) !important;
}

.van-cell,
.van-cell-group--inset {
    background: var(--bg-subtle) !important;
    border-radius: 6px !important;
    margin: 0 0 8px !important;
    overflow: hidden;
    border: 1px solid var(--border);
}

.van-cell-group--inset::after {
    border: none !important;
}

.van-field__label {
    color: var(--text-muted) !important;
    font-size: 12.5px !important;
    min-width: 5.2em !important;
}

.van-field__control {
    color: var(--text) !important;
    font-size: 13.5px !important;
}

.van-field__right-icon .van-icon {
    color: var(--text-muted) !important;
}

.van-tabbar {
    background: rgba(255, 255, 255, 0.96) !important;
    border-top: 1px solid var(--border) !important;
}

.van-tabbar-item--active {
    color: var(--text) !important;
}

.van-tabbar-item__text {
    color: inherit !important;
    font-size: 10.5px !important;
    letter-spacing: 0.04em;
}

.van-popup {
    background: var(--bg) !important;
    border-radius: 12px 12px 0 0 !important;
}

.van-popup--round {
    border-radius: 12px !important;
}

.van-picker__toolbar {
    border-bottom: 1px solid var(--border) !important;
}

.van-picker__cancel,
.van-picker__confirm {
    color: var(--text) !important;
    font-size: 14px !important;
    padding: 0 16px !important;
}

.van-nav-bar {
    background: var(--bg) !important;
    border-bottom: 1px solid var(--border) !important;
}

.van-nav-bar__title {
    color: var(--text) !important;
    font-size: 15px !important;
    font-weight: 600 !important;
}

.van-nav-bar .van-icon {
    color: var(--text) !important;
}

.van-loading__text,
.van-toast__text {
    color: var(--text) !important;
}

.van-dialog__message {
    color: var(--text) !important;
    font-size: 14px !important;
}

.van-dialog__header {
    color: var(--text) !important;
    font-weight: 600 !important;
}

/* ---------------- 弹窗中的列表项 ---------------- */
.limit-picker {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}

.limit-picker .item {
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--bg);
    color: var(--text);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
}

.limit-picker .item.active {
    background: var(--text);
    color: #fff;
    border-color: var(--text);
}