/* ==================== 全局重置 ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #4F46E5;
    --primary-dark: #4338CA;
    --primary-light: #EEF2FF;
    --success: #10B981;
    --success-light: #ECFDF5;
    --warning: #F59E0B;
    --warning-light: #FFFBEB;
    --error: #EF4444;
    --error-light: #FEF2F2;
    --info: #3B82F6;
    --bg: #F3F4F6;
    --card-bg: #FFFFFF;
    --text: #1F2937;
    --text-secondary: #6B7280;
    --text-light: #9CA3AF;
    --border: #E5E7EB;
    --sidebar-bg: #1E1B4B;
    --sidebar-hover: #312E81;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue',
                 'PingFang SC', 'Microsoft YaHei', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

a {
    color: var(--primary);
    text-decoration: none;
}

/* ==================== 认证页面 ==================== */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
}

.auth-container {
    width: 100%;
    max-width: 440px;
}

.auth-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-logo {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-header h1 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.auth-header p {
    font-size: 14px;
    color: var(--text-secondary);
}

.auth-form {
    margin-bottom: 24px;
}

.auth-footer {
    text-align: center;
    font-size: 14px;
    color: var(--text-secondary);
}

.auth-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* ==================== 表单组件 ==================== */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--text);
}

.form-group input,
.textarea-input,
.input-full {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--text);
    background: var(--card-bg);
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: inherit;
}

.form-group input:focus,
.textarea-input:focus,
.input-full:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.textarea-input {
    resize: vertical;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 13px;
    line-height: 1.5;
}

.error-msg {
    background: var(--error-light);
    color: var(--error);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    margin-bottom: 16px;
}

.notice-msg {
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    margin-bottom: 16px;
}

.notice-success {
    background: var(--success-light);
    color: var(--success);
}

/* ==================== 按钮组件 ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    white-space: nowrap;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover:not(:disabled) {
    background: var(--primary-dark);
}

.btn-secondary {
    background: var(--border);
    color: var(--text);
}

.btn-secondary:hover:not(:disabled) {
    background: #D1D5DB;
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

.btn-ghost:hover:not(:disabled) {
    background: var(--bg);
}

.btn-success {
    background: var(--success);
    color: #fff;
}

.btn-success:hover:not(:disabled) {
    background: #059669;
}

.btn-danger {
    background: var(--error);
    color: #fff;
}

.btn-danger:hover:not(:disabled) {
    background: #DC2626;
}

.btn-block {
    width: 100%;
}

.btn-sm {
    padding: 6px 14px;
    font-size: 13px;
}

/* ==================== 加载动画 ==================== */
.spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    vertical-align: middle;
}

.btn-secondary .spinner {
    border-color: rgba(0, 0, 0, 0.2);
    border-top-color: var(--text);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ==================== 仪表盘布局 ==================== */
.dashboard-page {
    min-height: 100vh;
}

.topbar {
    height: 56px;
    background: #fff;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.topbar-left {
    display: flex;
    align-items: center;
}

.topbar-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 16px;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--text);
}

.dashboard-layout {
    display: flex;
    min-height: calc(100vh - 56px);
}

.sidebar {
    width: 220px;
    background: var(--sidebar-bg);
    padding: 16px 0;
    flex-shrink: 0;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 0 12px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.nav-item.active {
    background: var(--primary);
    color: #fff;
}

.main-content {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
}

/* ==================== 统计卡片 ==================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.stat-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon-blue { background: var(--primary-light); color: var(--primary); }
.stat-icon-green { background: var(--success-light); color: var(--success); }
.stat-icon-purple { background: #FAF5FF; color: #8B5CF6; }
.stat-icon-orange { background: var(--warning-light); color: var(--warning); }

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
}

.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ==================== 区块标题 ==================== */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 18px;
    font-weight: 600;
}

/* ==================== 账号列表 ==================== */
.account-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.account-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
    transition: box-shadow 0.2s;
}

.account-card:hover {
    box-shadow: var(--shadow-md);
}

.account-card-header {
    display: flex;
    align-items: start;
    justify-content: space-between;
    margin-bottom: 14px;
}

.account-info {
    display: flex;
    align-items: start;
    gap: 12px;
}

.account-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    flex-shrink: 0;
}

.account-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
}

.account-meta {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 2px;
}

.account-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

/* 状态徽章 */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.badge-idle { background: #F3F4F6; color: #6B7280; }
.badge-running { background: var(--primary-light); color: var(--primary); }
.badge-completed { background: var(--success-light); color: var(--success); }
.badge-error { background: var(--error-light); color: var(--error); }
.badge-stopped { background: var(--warning-light); color: var(--warning); }

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.badge-running .badge-dot {
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* 步骤标签 */
.step-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.step-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.step-tag-pending { background: #F3F4F6; color: #9CA3AF; }
.step-tag-done { background: var(--success-light); color: var(--success); }
.step-tag-active { background: var(--primary-light); color: var(--primary); }
.step-tag-failed { background: var(--error-light); color: var(--error); }

/* 进度条 */
.progress-section {
    margin-top: 14px;
}

.progress-bar-container {
    background: var(--border);
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 6px;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), #818CF8);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.progress-bar.completed {
    background: var(--success);
}

.progress-bar.error {
    background: var(--error);
}

.progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-secondary);
}

.progress-current {
    margin-top: 6px;
    font-size: 13px;
    color: var(--text);
}

.progress-current-label {
    color: var(--text-secondary);
}

/* 空状态 */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
}

.empty-state svg {
    margin-bottom: 16px;
    color: var(--text-light);
}

.empty-state h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--text);
}

.empty-state p {
    font-size: 14px;
}

/* ==================== 标签页 ==================== */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* ==================== 使用指南 ==================== */
.guide-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    max-width: 800px;
}

.guide-card h2 {
    font-size: 20px;
    margin-bottom: 24px;
}

.guide-section {
    margin-bottom: 28px;
}

.guide-section h3 {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--primary);
}

.guide-section ol,
.guide-section ul {
    padding-left: 20px;
    font-size: 14px;
    line-height: 2;
    color: var(--text);
}

.guide-section code {
    background: var(--bg);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 13px;
    color: var(--primary);
}

.guide-section kbd {
    background: var(--text);
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-family: monospace;
}

.guide-section a {
    color: var(--primary);
}

/* ==================== 弹窗 ==================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.modal-content {
    position: relative;
    background: var(--card-bg);
    border-radius: var(--radius);
    width: 90%;
    max-width: 520px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
    animation: modalSlideIn 0.2s ease;
}

.modal-large {
    max-width: 720px;
}

@keyframes modalSlideIn {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
}

.modal-header h3 {
    font-size: 16px;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-secondary);
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.modal-close:hover {
    background: var(--bg);
}

.modal-body {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    padding: 16px 24px;
    border-top: 1px solid var(--border);
}

.verify-result {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    margin-top: 8px;
}

.verify-result.success {
    background: var(--success-light);
    color: var(--success);
}

.verify-result.error {
    background: var(--error-light);
    color: var(--error);
}

/* ==================== 日志内容 ==================== */
.log-content {
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.8;
    max-height: 500px;
    overflow-y: auto;
    background: #1E1B4B;
    border-radius: var(--radius-sm);
    padding: 16px;
    color: #E0E7FF;
}

.log-entry {
    padding: 2px 0;
    word-break: break-all;
}

.log-time {
    color: #818CF8;
    margin-right: 8px;
}

.log-level-INFO { color: #93C5FD; }
.log-level-WARNING { color: #FCD34D; }
.log-level-ERROR { color: #FCA5A5; }
.log-level-DEBUG { color: #6EE7B7; }
.log-level-DONE { color: #6EE7B7; }
.log-level-DOING { color: #93C5FD; }

.log-level-badge {
    display: inline-block;
    min-width: 60px;
    text-align: center;
    margin-right: 8px;
    font-weight: 600;
}

/* ==================== Toast通知 ==================== */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.toast {
    background: var(--card-bg);
    border-radius: var(--radius-sm);
    padding: 12px 20px;
    box-shadow: var(--shadow-lg);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 280px;
    animation: toastSlideIn 0.3s ease;
    border-left: 4px solid var(--primary);
}

.toast.success { border-left-color: var(--success); }
.toast.error { border-left-color: var(--error); }
.toast.warning { border-left-color: var(--warning); }
.toast.info { border-left-color: var(--info); }

@keyframes toastSlideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.toast.removing {
    animation: toastSlideOut 0.3s ease forwards;
}

@keyframes toastSlideOut {
    to { transform: translateX(120%); opacity: 0; }
}

/* ==================== 数据表格 ==================== */
.admin-table-wrap {
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.admin-table thead {
    background: var(--bg);
}

.admin-table th {
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

.admin-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}

.admin-table tbody tr:hover {
    background: #F9FAFB;
}

.admin-table tbody tr:last-child td {
    border-bottom: none;
}

/* ==================== 设置页面 ==================== */
.settings-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    max-width: 600px;
}

.settings-section h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.settings-desc {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.settings-section .form-group {
    margin-bottom: 18px;
}

.settings-section .form-group:last-of-type {
    margin-bottom: 20px;
}

.form-hint {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    margin-top: 4px;
}

/* ==================== 响应式 ==================== */

/* 移动端菜单按钮 - 默认隐藏 */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text);
    padding: 4px;
    align-items: center;
    justify-content: center;
}

/* 侧边栏遮罩层 - 默认隐藏 */
.sidebar-overlay {
    display: none;
}

/* 平板适配 */
@media (max-width: 1024px) {
    .sidebar {
        width: 180px;
    }

    .topbar-logo .topbar-title {
        font-size: 14px;
    }
}

/* 移动端适配 */
@media (max-width: 768px) {
    /* 移动端菜单按钮显示 */
    .mobile-menu-toggle {
        display: flex;
    }

    /* 顶栏适配 */
    .topbar {
        padding: 0 12px;
        height: 52px;
    }

    .topbar-left {
        gap: 8px;
    }

    .topbar-logo .topbar-title {
        font-size: 14px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 160px;
    }

    .topbar-right {
        gap: 8px;
    }

    .user-info .user-name-display {
        display: none;
    }

    .topbar-right .btn-sm {
        padding: 4px 10px;
        font-size: 12px;
    }

    /* 侧边栏变为抽屉式 */
    .sidebar {
        position: fixed;
        top: 52px;
        left: 0;
        bottom: 0;
        width: 240px;
        z-index: 200;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
    }

    body.sidebar-open .sidebar {
        transform: translateX(0);
        box-shadow: 2px 0 12px rgba(0, 0, 0, 0.3);
    }

    .sidebar-overlay {
        display: block;
        position: fixed;
        top: 52px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 150;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    body.sidebar-open .sidebar-overlay {
        opacity: 1;
        pointer-events: auto;
    }

    /* 主内容区 */
    .main-content {
        padding: 12px;
    }

    .dashboard-layout {
        min-height: calc(100vh - 52px);
    }

    /* 统计卡片 - 移动端双列 */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-bottom: 16px;
    }

    .stat-card {
        padding: 14px;
        gap: 10px;
    }

    .stat-icon {
        width: 36px;
        height: 36px;
    }

    .stat-icon svg {
        width: 18px;
        height: 18px;
    }

    .stat-value {
        font-size: 20px;
    }

    .stat-label {
        font-size: 12px;
    }

    /* 区块标题 */
    .section-header {
        margin-bottom: 12px;
        flex-wrap: wrap;
        gap: 8px;
    }

    .section-header h2 {
        font-size: 16px;
    }

    /* 账号卡片 */
    .account-card {
        padding: 14px;
    }

    .account-card-header {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 10px;
    }

    .account-actions {
        flex-wrap: wrap;
        gap: 6px;
    }

    .account-actions .btn {
        font-size: 12px;
        padding: 4px 10px;
    }

    .account-avatar {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .account-name {
        font-size: 15px;
    }

    .account-meta {
        font-size: 12px;
    }

    /* 表格水平滚动 */
    .admin-table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .admin-table {
        font-size: 13px;
    }

    .admin-table th,
    .admin-table td {
        padding: 8px 10px;
        white-space: nowrap;
    }

    /* 弹窗全屏化 */
    .modal-content {
        width: 95%;
        max-width: none;
        max-height: 95vh;
        margin: 0;
    }

    .modal-large {
        max-width: none;
    }

    .modal-header {
        padding: 12px 16px;
    }

    .modal-header h3 {
        font-size: 15px;
    }

    .modal-body {
        padding: 16px;
    }

    .modal-footer {
        padding: 12px 16px;
        flex-wrap: wrap;
    }

    .modal-footer .btn {
        flex: 1;
        min-width: 80px;
    }

    /* 设置卡片 */
    .settings-card {
        padding: 16px;
        max-width: none;
    }

    .settings-section h3 {
        font-size: 15px;
    }

    /* 使用指南 */
    .guide-card {
        padding: 16px;
    }

    .guide-card h2 {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .guide-section {
        margin-bottom: 20px;
    }

    .guide-section h3 {
        font-size: 15px;
    }

    .guide-section ol,
    .guide-section ul {
        font-size: 13px;
        line-height: 1.8;
        padding-left: 16px;
    }

    /* 日志内容 */
    .log-content {
        font-size: 12px;
        max-height: 400px;
        padding: 12px;
    }

    .log-level-badge {
        min-width: 50px;
    }

    /* Toast通知 */
    .toast-container {
        top: 10px;
        right: 10px;
        left: 10px;
    }

    .toast {
        min-width: auto;
        font-size: 13px;
        padding: 10px 16px;
    }

    /* 认证页面 */
    .auth-card {
        padding: 28px 20px;
    }
}

/* 超小屏幕适配 */
@media (max-width: 380px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .topbar-logo .topbar-title {
        max-width: 100px;
    }

    .topbar-right {
        gap: 4px;
    }
}
