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

:root {
    --bg: #f0f2f5;
    --sidebar-bg: #111827;
    --sidebar-hover: rgba(255,255,255,.05);
    --sidebar-active-bg: rgba(99,102,241,.18);
    --sidebar-text: #9ca3af;
    --card-bg: #ffffff;
    --primary: #6366f1;
    --primary-light: #eef2ff;
    --primary-hover: #4f46e5;
    --danger: #ef4444;
    --danger-light: #fef2f2;
    --danger-hover: #dc2626;
    --success: #059669;
    --text: #111827;
    --text-secondary: #6b7280;
    --text-muted: #9ca3af;
    --border: #e5e7eb;
    --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
    --shadow: 0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.04);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,.07), 0 2px 4px -2px rgba(0,0,0,.05);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.08), 0 4px 6px -4px rgba(0,0,0,.04);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-xs: 6px;
    --transition: .18s cubic-bezier(.4,0,.2,1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

.app {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.sidebar {
    width: 260px;
    background: var(--sidebar-bg);
    color: var(--sidebar-text);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 100;
    overflow-y: auto;
    border-right: 1px solid rgba(255,255,255,.05);
}

.sidebar-header {
    padding: 20px 20px 14px;
    border-bottom: 1px solid rgba(255,255,255,.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 17px;
    font-weight: 700;
    color: #f9fafb;
    letter-spacing: -.2px;
}

.category-nav {
    padding: 8px 10px;
    flex: 1;
    overflow-y: auto;
}

.category-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 13.5px;
    margin-bottom: 1px;
    color: var(--sidebar-text);
}

.category-item:hover {
    background: var(--sidebar-hover);
    color: #e5e7eb;
}

.category-item.active {
    background: var(--sidebar-active-bg);
    color: #e0e7ff;
    font-weight: 600;
}

.category-item .category-name {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-right: 8px;
}

.category-item .category-count {
    font-size: 11px;
    background: rgba(255,255,255,.08);
    padding: 1px 7px;
    border-radius: 9px;
    min-width: 22px;
    text-align: center;
    font-weight: 500;
    flex-shrink: 0;
}

.category-item.active .category-count {
    background: var(--primary);
    color: #fff;
}

.category-item .category-actions {
    display: none;
    gap: 2px;
    margin-left: 6px;
}

.category-item:hover .category-actions {
    display: flex;
}

.category-actions button {
    background: none;
    border: none;
    color: var(--sidebar-text);
    cursor: pointer;
    padding: 3px 5px;
    border-radius: 4px;
    font-size: 13px;
    transition: var(--transition);
    line-height: 1;
}

.category-actions button:hover {
    color: #f9fafb;
    background: rgba(255,255,255,.08);
}

.category-actions .btn-del:hover {
    color: #fca5a5;
}

/* Main */
.main {
    margin-left: 260px;
    flex: 1;
    padding: 28px 36px;
    min-height: 100vh;
}

.main-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.search-box {
    flex: 1;
    position: relative;
    max-width: 480px;
}

.search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 17px;
    height: 17px;
    color: var(--text-muted);
    pointer-events: none;
}

.search-box input {
    width: 100%;
    padding: 10px 16px 10px 42px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--card-bg);
    font-size: 14px;
    color: var(--text);
    outline: none;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.search-box input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99,102,241,.1);
}

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

/* Tag Filter Bar */
.tag-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.tag-chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
    background: var(--card-bg);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    user-select: none;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
}

.tag-chip:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

.tag-chip.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.tag-chip.active em {
    background: rgba(255,255,255,.25);
}

.tag-chip em {
    font-style: normal;
    font-size: 11px;
    background: rgba(0,0,0,.05);
    padding: 1px 7px;
    border-radius: 9px;
    margin-left: 5px;
    font-weight: 600;
    min-width: 18px;
    text-align: center;
}

.tag-chip-clear {
    margin-left: 4px;
    border-style: dashed;
}

.tag-chip-clear:hover {
    background: #fef2f2;
    border-color: #ef4444;
    color: #ef4444;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 18px;
}

.product-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: #d1d5db;
    transform: translateY(-1px);
}

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

.product-card .card-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    word-break: break-all;
    flex: 1;
    margin-right: 8px;
    line-height: 1.4;
}

.product-card .card-actions {
    display: flex;
    gap: 2px;
    opacity: 0;
    transition: var(--transition);
    flex-shrink: 0;
}

.product-card:hover .card-actions {
    opacity: 1;
}

.card-actions button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 6px;
    border-radius: 5px;
    color: var(--text-muted);
    transition: var(--transition);
    line-height: 1;
}

.card-actions button:hover {
    background: var(--bg);
    color: var(--text);
}

.card-actions .btn-edit:hover {
    color: var(--primary);
}

.card-actions .btn-del:hover {
    color: var(--danger);
}

/* Card links */
.product-card .card-link {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12.5px;
    margin-bottom: 6px;
    word-break: break-all;
    padding: 8px 12px;
    border-radius: var(--radius-xs);
    background: var(--bg);
    line-height: 1.4;
}

.product-card .card-link .link-text {
    flex: 1;
    color: var(--text-secondary);
}

.product-card .card-link.quark-link {
    border-left: 3px solid #3b82f6;
    background: #eff6ff;
}

.product-card .card-link.baidu-link {
    border-left: 3px solid #059669;
    background: #ecfdf5;
}

.platform-badge-sm {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    flex-shrink: 0;
    letter-spacing: .3px;
}

.platform-badge-sm.quark { background: #3b82f6; }
.platform-badge-sm.baidu { background: #059669; }

.btn-copy-inline {
    background: none;
    border: none;
    cursor: pointer;
    padding: 2px;
    color: var(--text-muted);
    flex-shrink: 0;
    opacity: 0;
    transition: var(--transition);
    border-radius: 4px;
}

.product-card .card-link:hover .btn-copy-inline {
    opacity: 1;
}

.btn-copy-inline:hover {
    color: var(--primary);
    background: rgba(0,0,0,.04);
}

/* Extraction Code Box */
.card-extcode {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: var(--radius-xs);
    background: #fffbeb;
    border: 1px solid #fde68a;
    margin-bottom: 10px;
}

.card-extcode .extcode-label {
    font-size: 11px;
    font-weight: 600;
    color: #92400e;
    white-space: nowrap;
}

.card-extcode .extcode-value {
    font-size: 15px;
    font-weight: 700;
    color: #d97706;
    letter-spacing: 1.5px;
    flex: 1;
    font-family: "SF Mono", "Consolas", "JetBrains Mono", monospace;
}

.card-extcode .btn-copy-inline {
    opacity: 0;
}

.card-extcode:hover .btn-copy-inline {
    opacity: 1;
}

/* Card tags */
.product-card .card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
}

.card-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 11.5px;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    transition: var(--transition);
}

.card-tag:hover {
    opacity: .8;
    transform: scale(1.06);
}

.product-card .card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid var(--border);
    font-size: 12px;
    color: var(--text-muted);
}

.product-card .card-category {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--bg);
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 12px;
    color: var(--text-secondary);
}

.product-card .card-note {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 10px;
    line-height: 1.55;
    word-break: break-all;
}

/* Empty State */
.empty-state {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    color: var(--text-muted);
}

.empty-state svg {
    width: 72px;
    height: 72px;
    margin-bottom: 18px;
    opacity: .2;
    color: var(--text-secondary);
}

.empty-state p {
    font-size: 15px;
    color: var(--text-muted);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    letter-spacing: .1px;
}

.btn svg {
    width: 16px;
    height: 16px;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 1px 2px rgba(99,102,241,.3);
}

.btn-primary:hover {
    background: var(--primary-hover);
    box-shadow: 0 2px 6px rgba(99,102,241,.35);
}

.btn-danger {
    background: var(--danger);
    color: #fff;
}

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

.btn-secondary {
    background: var(--card-bg);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--bg);
    border-color: #d1d5db;
}

.btn-sm {
    padding: 6px 14px;
    font-size: 12.5px;
    font-weight: 600;
}

/* Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.45);
    z-index: 200;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(3px);
}

.modal-overlay.show {
    display: flex;
}

.modal {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 28px 32px;
    width: 90%;
    max-width: 620px;
    max-height: 88vh;
    overflow-y: auto;
    box-shadow: 0 25px 60px rgba(0,0,0,.18);
    animation: modalIn .22s ease;
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(.96) translateY(8px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal h2 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 22px;
    color: var(--text);
    letter-spacing: -.2px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
    letter-spacing: .1px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    font-size: 14px;
    color: var(--text);
    outline: none;
    transition: var(--transition);
    font-family: inherit;
    background: var(--card-bg);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99,102,241,.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
    line-height: 1.5;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.form-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 24px;
}

/* Tag Input */
.tag-input-wrapper {
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    padding: 6px 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    min-height: 42px;
    cursor: text;
    transition: var(--transition);
    background: var(--card-bg);
}

.tag-input-wrapper:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99,102,241,.1);
}

.tag-input-wrapper .tag-bubble {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    background: var(--primary);
    color: #fff;
    border-radius: 12px;
    font-size: 12.5px;
    font-weight: 500;
    animation: tagPop .2s ease;
}

@keyframes tagPop {
    from { transform: scale(0); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

.tag-bubble .tag-remove {
    cursor: pointer;
    font-size: 15px;
    line-height: 1;
    opacity: .65;
    transition: var(--transition);
    margin-left: 1px;
}

.tag-bubble .tag-remove:hover {
    opacity: 1;
}

.tag-input-wrapper input {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 2px 0 !important;
    flex: 1;
    min-width: 80px;
    font-size: 13.5px !important;
    background: transparent !important;
}

/* Platform Badges (form) */
.platform-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    letter-spacing: .2px;
}

.platform-badge.quark { background: #3b82f6; }
.platform-badge.baidu { background: #059669; }

/* Form Row (side-by-side) */
.form-row {
    display: flex;
    gap: 14px;
}

.form-row .form-group {
    flex: 1;
}

.form-hint {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 5px;
    line-height: 1.4;
}

#formPasteBox {
    font-size: 13px;
    line-height: 1.55;
}

/* Toast */
.toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #1f2937;
    color: #fff;
    padding: 12px 28px;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 500;
    z-index: 300;
    opacity: 0;
    transition: all .28s ease;
    pointer-events: none;
    white-space: nowrap;
    box-shadow: var(--shadow-lg);
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.toast.success { background: #059669; }
.toast.error { background: var(--danger); }

/* Hamburger Menu Button */
.btn-menu {
    display: none;
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 8px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    color: var(--text);
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.btn-menu:hover {
    border-color: #d1d5db;
}

.btn-menu svg {
    width: 20px;
    height: 20px;
}

/* Sidebar Backdrop */
.sidebar-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.35);
    z-index: 99;
    backdrop-filter: blur(2px);
}

/* Responsive */
@media (max-width: 768px) {
    .btn-menu {
        display: inline-flex;
    }

    .sidebar {
        width: 270px;
        transform: translateX(-100%);
        transition: transform .25s cubic-bezier(.4,0,.2,1);
        z-index: 110;
        border-right: none;
        box-shadow: 4px 0 20px rgba(0,0,0,.15);
    }

    .sidebar.open {
        transform: translateX(0);
    }

    .sidebar-backdrop.show {
        display: block;
    }

    .main {
        margin-left: 0;
        padding: 16px;
    }

    .main-header {
        gap: 10px;
    }

    .search-box {
        max-width: 100%;
        flex: 1;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .product-card {
        padding: 16px;
    }

    .product-card .card-actions,
    .card-extcode .btn-copy-inline,
    .product-card .card-link .btn-copy-inline {
        opacity: 1;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .modal {
        width: 95%;
        padding: 20px 18px;
        max-height: 92vh;
        border-radius: var(--radius-sm);
    }

    .main-header .btn-primary {
        padding: 10px 14px;
        font-size: 13px;
    }
}

/* ==================== Topbar ==================== */
.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 58px;
    padding: 0 24px;
    background: #111827;
    color: #f9fafb;
    position: sticky;
    top: 0;
    z-index: 90;
    box-shadow: 0 1px 3px rgba(0,0,0,.25);
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: -.2px;
}

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

.user-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-name {
    font-size: 13.5px;
    font-weight: 600;
    color: #f9fafb;
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.role-badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 9px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .3px;
}

.role-badge.admin { background: rgba(99,102,241,.25); color: #c7d2fe; }
.role-badge.user { background: rgba(255,255,255,.12); color: #e5e7eb; }

/* ==================== 认证页 ==================== */
.auth-view {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 58px);
    padding: 24px;
}

.auth-card {
    background: var(--card-bg);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,.10);
    width: 100%;
    max-width: 400px;
    padding: 36px 38px;
}

.auth-card h2 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 6px;
    text-align: center;
}

.auth-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 24px;
}

.auth-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 16px;
    word-break: break-all;
}

.auth-switch {
    text-align: center;
    margin-top: 18px;
    font-size: 13px;
    color: var(--text-muted);
}

.auth-switch a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.auth-switch a:hover {
    text-decoration: underline;
}

.btn-block {
    width: 100%;
    justify-content: center;
    padding: 12px;
}

/* ==================== 管理员用户筛选 ==================== */
.user-filter {
    padding: 10px 34px 10px 14px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--card-bg);
    font-size: 13.5px;
    color: var(--text);
    outline: none;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    max-width: 160px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.user-filter:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99,102,241,.1);
}

/* ==================== 用户管理表格 ==================== */
.modal.modal-wide {
    max-width: 860px;
}

.table-wrap {
    overflow-x: auto;
    margin: 0 -8px;
    padding: 0 8px;
}

.user-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13.5px;
}

.user-table th {
    text-align: left;
    padding: 10px 12px;
    background: var(--bg);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 12.5px;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

.user-table td {
    padding: 12px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
    color: var(--text);
}

.user-table tbody tr:hover {
    background: #f9fafb;
}

.user-table .user-actions {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.status-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    margin-right: 5px;
    vertical-align: middle;
}

.status-dot.on { background: #22c55e; }
.status-dot.off { background: #ef4444; }

.text-muted {
    color: var(--text-muted);
    font-size: 12.5px;
    white-space: nowrap;
}

.card-owner {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--primary-light);
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 12px;
    color: var(--primary);
    font-weight: 500;
}

@media (max-width: 768px) {
    .topbar { padding: 0 14px; }
    .user-name { max-width: 90px; }
    .user-box { gap: 6px; }
    .topbar-right { gap: 6px; }
    .user-filter { max-width: 110px; }
}
