:root {
    --bg-main: #f7f7f8;
    --bg-page: #f3f4f6;
    --bg-card: #ffffff;
    --bg-soft: #f3f4f6;
    --bg-hover: #f9fafb;

    --text-main: #111827;
    --text-normal: #374151;
    --text-muted: #6b7280;
    --text-light: #9ca3af;

    --border: #e5e7eb;
    --border-strong: #d1d5db;

    --primary: #111827;
    --primary-hover: #1f2937;
    --primary-blue: #2563eb;

    --danger: #dc2626;
    --danger-dark: #b91c1c;
    --success: #047857;

    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 18px;
    --radius-xl: 24px;

    --shadow-soft: 0 8px 28px rgba(15, 23, 42, 0.06);
    --shadow-card: 0 18px 50px rgba(15, 23, 42, 0.10);
    --shadow-pop: 0 18px 50px rgba(15, 23, 42, 0.18);
}

/* =========================
   基础样式
========================= */

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: Arial, "Microsoft YaHei", sans-serif;
    background: var(--bg-main);
    color: var(--text-main);
}

button,
input,
select,
textarea {
    font-family: inherit;
}

.hidden {
    display: none !important;
}

button {
    border: 0;
    background: var(--primary);
    color: #ffffff;
    padding: 11px 16px;
    border-radius: 999px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.12s ease, box-shadow 0.15s ease;
}

button:hover {
    background: var(--primary-hover);
    filter: none;
}

button:active {
    transform: translateY(1px);
}

button:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
}

.btn-full {
    width: 100%;
    font-size: 15px;
}

.btn-secondary {
    background: #374151;
}

.btn-secondary:hover {
    background: #1f2937;
}

.btn-ghost {
    background: #ffffff;
    color: var(--text-normal);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    background: var(--bg-soft);
    color: var(--text-main);
}

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

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

label {
    display: block;
    font-size: 14px;
    margin-bottom: 7px;
    color: var(--text-normal);
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--border-strong);
    border-radius: 12px;
    padding: 12px;
    font-size: 15px;
    outline: none;
    background: #ffffff;
    color: var(--text-main);
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #9ca3af;
    box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.08);
}

.field {
    margin-bottom: 16px;
}

/* =========================
   登录页
========================= */

.login-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
    background:
        radial-gradient(circle at top left, rgba(17, 24, 39, 0.08), transparent 34%),
        radial-gradient(circle at bottom right, rgba(37, 99, 235, 0.08), transparent 30%),
        linear-gradient(135deg, #ffffff 0%, #f7f7f8 100%);
}

.login-card {
    width: 100%;
    max-width: 420px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(229, 231, 235, 0.9);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(12px);
}

.login-logo {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: var(--primary);
    color: #ffffff;
    display: grid;
    place-items: center;
    font-weight: bold;
    margin-bottom: 18px;
}

.login-kicker {
    margin-bottom: 8px;
    font-size: 12px;
    color: var(--text-light);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.login-card h1 {
    margin: 0 0 8px;
    font-size: 26px;
    letter-spacing: -0.03em;
}

.login-desc {
    margin: 0 0 24px;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 14px;
}

.small-tip {
    margin-top: 16px;
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* =========================
   状态提示
========================= */

.status {
    margin-top: 14px;
    padding: 11px 12px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
    white-space: pre-wrap;
}

.status.info {
    background: #eff6ff;
    color: #1d4ed8;
}

.status.ok {
    background: #ecfdf5;
    color: #047857;
}

.status.err {
    background: #fef2f2;
    color: #b91c1c;
}

/* =========================
   主体布局
========================= */

.app-shell {
    height: 100vh;
    display: grid;
    grid-template-columns: 292px 1fr;
    background: var(--bg-main);
}

/* =========================
   左侧栏
========================= */

.sidebar {
    background: #ffffff;
    color: var(--text-main);
    padding: 14px 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
    border-right: 1px solid var(--border);
}

.brand-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 8px 14px;
    border-bottom: 1px solid #f1f5f9;
}

.brand-icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: var(--primary);
    color: #ffffff;
    display: grid;
    place-items: center;
    font-weight: bold;
}

.brand-text {
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.01em;
}

.side-card {
    border-radius: 16px;
    padding: 10px;
    background: #ffffff;
    border: 1px solid #f1f5f9;
}

.side-section {
    display: grid;
    gap: 8px;
}

.side-label {
    font-size: 12px;
    color: var(--text-muted);
}

.sidebar select {
    background: #ffffff;
    border-color: var(--border);
    color: var(--text-main);
}

.side-btn {
    width: 100%;
    margin-top: 4px;
    background: #ffffff;
    color: var(--text-main);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.side-btn:hover {
    background: var(--bg-soft);
    color: var(--text-main);
    filter: none;
}

.user-card {
    margin-top: auto;
    border-top: 1px solid #f1f5f9;
    padding: 12px 6px 0;
    display: grid;
    gap: 9px;
}

.user-name {
    font-size: 14px;
    color: var(--text-main);
    font-weight: bold;
    word-break: break-all;
}

.user-role {
    font-size: 12px;
    color: var(--text-muted);
    word-break: break-all;
    line-height: 1.45;
}

.side-note {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.6;
    padding: 0 4px;
}

/* =========================
   聊天主区域
========================= */

.chat-main {
    min-width: 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
    background: var(--bg-main);
}

.chat-header {
    height: 64px;
    padding: 0 28px;
    background: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    backdrop-filter: blur(10px);
}

.chat-title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.chat-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 3px;
}

.header-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.messages {
    flex: 1;
    overflow-y: auto;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* =========================
   欢迎卡片
========================= */

.welcome {
    max-width: 760px;
    margin: 48px auto 0;
    text-align: left;
    color: var(--text-normal);
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 28px 32px;
    box-shadow: var(--shadow-soft);
}

.welcome h2 {
    margin: 0 0 14px;
    font-size: 24px;
    color: var(--text-main);
    text-align: center;
    letter-spacing: -0.03em;
}

.welcome p {
    margin: 0;
    color: #4b5563;
    line-height: 1.9;
    font-size: 15px;
    white-space: pre-wrap;
}

/* =========================
   消息区
========================= */

.message-row {
    display: flex;
    gap: 12px;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

.message-row.user {
    justify-content: flex-end;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-size: 13px;
    font-weight: bold;
    flex: 0 0 32px;
}

.avatar.ai {
    background: var(--primary);
    color: #ffffff;
}

.avatar.user {
    background: #e5e7eb;
    color: var(--text-main);
    order: 2;
}

.bubble {
    max-width: 78%;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 13px 16px;
    line-height: 1.8;
    white-space: pre-wrap;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.message-row.user .bubble {
    background: var(--bg-soft);
    color: var(--text-main);
    border-color: var(--bg-soft);
    box-shadow: none;
}

/* 兼容带操作按钮的消息结构 */
.message-content {
    max-width: 78%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.message-row.user .message-content {
    align-items: flex-end;
}

.message-content .bubble {
    max-width: none;
    width: 100%;
}

/* =========================
   AI 图表显示
========================= */

.ai-chart-wrap {
    margin: 10px 0 12px;
    padding: 10px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow-x: auto;
}

.ai-chart-img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: 8px;
}

.bubble .ai-chart-wrap:first-child {
    margin-top: 0;
}

.bubble .ai-chart-wrap:last-child {
    margin-bottom: 0;
}

/* =========================
   AI 回答操作按钮
========================= */

.answer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 2px;
}

.answer-action-btn {
    background: #ffffff;
    color: var(--text-normal);
    border: 1px solid var(--border);
    padding: 6px 9px;
    border-radius: 999px;
    font-size: 12px;
    line-height: 1.2;
}

.answer-action-btn:hover {
    background: var(--bg-soft);
    color: var(--text-main);
    filter: none;
}

/* =========================
   底部输入区
========================= */

.composer-wrap {
    background: linear-gradient(to top, #ffffff 72%, rgba(247, 247, 248, 0));
    border-top: 0;
    padding: 16px 24px 22px;
}

.composer-inner {
    max-width: 900px;
    margin: 0 auto;
}

.composer-inner .quick-reports {
    max-width: none;
}

.composer {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: end;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 8px;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
}

.composer textarea {
    border: 0;
    border-radius: 16px;
    min-height: 46px;
    max-height: 160px;
    resize: vertical;
    line-height: 1.6;
    padding: 11px 12px;
    background: transparent;
}

.composer textarea:focus {
    border-color: transparent;
    box-shadow: none;
}

#sendBtn {
    min-width: 72px;
    height: 44px;
    border-radius: 16px;
    background: var(--primary);
}

#sendBtn:hover {
    background: var(--primary-hover);
}

.composer-tip {
    max-width: 900px;
    margin: 8px auto 0;
    color: var(--text-light);
    font-size: 12px;
    text-align: center;
}

/* =========================
   Toast
========================= */

.toast {
    position: fixed;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    min-width: 260px;
    max-width: calc(100vw - 32px);
    padding: 12px 14px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.16);
    background: var(--primary);
    color: #ffffff;
    font-size: 14px;
    white-space: pre-wrap;
}

.toast.err {
    background: var(--danger-dark);
}

.toast.ok {
    background: var(--success);
}

/* =========================
   弹窗
========================= */

.modal-mask {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.45);
    display: grid;
    place-items: center;
    padding: 20px;
}

.modal-card {
    width: 100%;
    max-width: 320px;
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 22px;
    box-shadow: var(--shadow-pop);
}

.modal-title {
    font-size: 18px;
    font-weight: bold;
    color: var(--text-main);
    margin-bottom: 10px;
}

.modal-text {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 18px;
}

.modal-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.modal-actions button {
    width: 100%;
}

/* =========================
   移动端顶部
========================= */

.mobile-top-row {
    display: none;
}

/* =========================
   历史会话列表
========================= */

.session-panel {
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.session-panel-head,
.session-modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.session-panel-head {
    color: var(--text-muted);
    font-size: 13px;
    padding: 0 4px;
}

.compact-btn {
    padding: 6px 9px;
    font-size: 12px;
    border-radius: 999px;
}

.session-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    overflow-y: auto;
    max-height: 42vh;
    padding-right: 2px;
}

.session-empty {
    color: var(--text-light);
    font-size: 12px;
    line-height: 1.6;
    padding: 8px 2px;
}

.session-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 6px;
    align-items: center;
    width: 100%;
    border-radius: 12px;
    padding: 9px 9px;
    background: #ffffff;
    border: 1px solid transparent;
}

.session-item:hover {
    background: #f7f7f8;
}

.session-item.active {
    background: var(--bg-soft);
    border-color: var(--border);
}

.session-open {
    min-width: 0;
    text-align: left;
    background: transparent;
    color: var(--text-main);
    border: 0;
    padding: 0;
    line-height: 1.4;
    border-radius: 0;
}

.session-open:hover {
    background: transparent;
    filter: none;
    color: var(--text-main);
}

.session-name {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 13px;
    color: var(--text-main);
}

.session-time {
    display: block;
    color: var(--text-light);
    font-size: 11px;
    margin-top: 3px;
}

.session-delete {
    background: transparent;
    color: var(--text-light);
    border: 0;
    padding: 4px 6px;
    border-radius: 8px;
    font-size: 15px;
}

.session-delete:hover {
    background: #fee2e2;
    color: var(--danger-dark);
    filter: none;
}

/* =========================
   更多菜单 / 会话弹窗
========================= */

.menu-card {
    max-width: 300px;
}

.menu-actions {
    display: grid;
    gap: 10px;
}

.menu-actions button {
    width: 100%;
}

.session-modal-card {
    max-width: 420px;
    max-height: 78vh;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.session-modal-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
}

.session-modal-list .session-item {
    background: #f9fafb;
    border-color: var(--border);
}

.session-modal-list .session-item.active {
    background: #f3f4f6;
    border-color: var(--border-strong);
}

.session-modal-list .session-open {
    color: var(--text-main);
}

.session-modal-list .session-time {
    color: var(--text-muted);
}

.session-modal-list .session-delete {
    color: var(--text-muted);
}

.session-modal-list .session-delete:hover {
    background: #fee2e2;
    color: var(--danger-dark);
}

/* =========================
   快捷报表按钮
========================= */

.quick-reports {
    max-width: 900px;
    margin: 0 auto 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-reports-head {
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.3;
}

.quick-reports-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-main);
}

.quick-reports-desc {
    font-size: 12px;
    color: var(--text-light);
}

.quick-report-section {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
}

.quick-report-section-title {
    font-size: 12px;
    color: var(--text-muted);
    flex: 0 0 auto;
}

.quick-report-btn {
    background: #ffffff;
    color: var(--text-normal);
    border: 1px solid var(--border);
    padding: 7px 11px;
    border-radius: 999px;
    font-size: 12px;
    line-height: 1.2;
}

.quick-report-btn:hover {
    background: var(--bg-soft);
    color: var(--text-main);
    filter: none;
}

/* =========================
   移动端适配
========================= */

@media (max-width: 820px) {
    html,
    body {
        height: 100%;
        overflow: hidden;
    }

    /* 手机端登录页 */
    .login-page {
        height: 100vh;
        height: 100dvh;
        min-height: 100vh;
        min-height: 100dvh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 18px 14px 24px;
        overflow-y: auto;
    }

    .login-page:focus-within {
        align-items: flex-start;
    }

    .login-card {
        width: 100%;
        max-width: 420px;
        margin-top: 0;
        padding: 22px 20px;
        border-radius: 18px;
    }

    .login-page:focus-within .login-card {
        margin-top: 18px;
    }

    .login-logo {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        margin-bottom: 12px;
    }

    .login-kicker {
        margin-bottom: 6px;
        font-size: 11px;
    }

    .login-card h1 {
        font-size: 22px;
        margin: 0 0 6px;
    }

    .login-desc {
        font-size: 13px;
        line-height: 1.5;
        margin: 0 0 16px;
    }

    .field {
        margin-bottom: 12px;
    }

    label {
        font-size: 13px;
        margin-bottom: 6px;
    }

    input {
        height: 44px;
        padding: 10px 11px;
        font-size: 16px;
    }

    .btn-full {
        height: 44px;
        padding: 0 14px;
        font-size: 15px;
    }

    .small-tip {
        margin-top: 12px;
        font-size: 12px;
        line-height: 1.5;
    }

    #loginStatus {
        margin-top: 10px;
        padding: 9px 10px;
        font-size: 13px;
    }

    /* 手机端聊天页 */
    .app-shell {
        height: 100vh;
        height: 100dvh;
        min-height: 100vh;
        min-height: 100dvh;
        display: flex;
        flex-direction: column;
        background: var(--bg-main);
    }

    .single-app-hidden {
        display: none !important;
    }

    .sidebar {
        flex: 0 0 auto;
        display: flex;
        flex-direction: column;
        padding: 8px 10px;
        gap: 8px;
        min-height: 0;
        background: #ffffff !important;
        color: var(--text-main) !important;
        border-right: 0;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
    }

    .brand-row {
        display: none !important;
    }

    .side-card {
        padding: 0;
        border: 0;
        background: transparent;
    }

    .side-section {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        align-items: center;
    }

    .side-section .side-label {
        display: none !important;
    }

    .sidebar select {
        grid-column: 1 / -1;
        background: #ffffff !important;
        color: var(--text-main) !important;
        border: 1px solid var(--border-strong) !important;
        height: 38px;
        padding: 6px 10px;
        font-size: 14px;
        margin: 0;
        border-radius: 12px;
    }

    .side-btn {
        width: 100%;
        margin: 0;
        background: #ffffff !important;
        color: var(--text-main) !important;
        border: 1px solid var(--border) !important;
        padding: 9px 10px;
        font-size: 13px;
        border-radius: 12px;
        white-space: nowrap;
    }

    .side-btn:hover {
        background: var(--bg-soft) !important;
    }

    .side-note {
        display: none !important;
    }

    #sideStatus {
        display: none !important;
    }

    .user-card {
        display: none !important;
    }

    .chat-main {
        flex: 1 1 auto;
        min-height: 0;
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .chat-header {
        display: none !important;
    }

    .chat-title,
    .chat-subtitle,
    .header-actions {
        display: none !important;
    }

    .mobile-top-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .mobile-app-title {
        font-size: 15px;
        font-weight: bold;
        color: var(--text-main);
        max-width: calc(100vw - 110px);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .mobile-session-title {
        margin-top: 2px;
        font-size: 12px;
        color: var(--text-muted);
        max-width: calc(100vw - 110px);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .mobile-more-btn {
        flex: 0 0 auto;
        height: 36px;
        padding: 0 12px;
        background: #ffffff !important;
        color: var(--text-main) !important;
        border: 1px solid var(--border) !important;
        border-radius: 999px;
    }

    .messages {
        flex: 1 1 auto;
        min-height: 0;
        overflow-y: auto;
        padding: 12px;
        gap: 12px;
    }

    .welcome {
        margin: 12px auto 0;
        padding: 16px;
        border-radius: 16px;
    }

    .welcome h2 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .welcome p {
        font-size: 13px;
        line-height: 1.7;
    }

    .message-row {
        gap: 8px;
    }

    .avatar {
        width: 28px;
        height: 28px;
        flex-basis: 28px;
        border-radius: 9px;
        font-size: 12px;
    }

    .bubble {
        max-width: 84%;
        padding: 10px 12px;
        font-size: 14px;
        line-height: 1.7;
        border-radius: 16px;
    }

    .message-content {
        max-width: 84%;
    }

    .ai-chart-wrap {
        margin: 8px 0 10px;
        padding: 8px;
        border-radius: 10px;
    }

    .ai-chart-img {
        min-width: 520px;
    }

    .answer-actions {
        gap: 5px;
    }

    .answer-action-btn {
        padding: 5px 8px;
        font-size: 12px;
    }

    .composer-wrap {
        flex: 0 0 auto;
        padding: 8px 10px 12px;
        background: #ffffff;
        box-shadow: 0 -6px 20px rgba(15, 23, 42, 0.06);
    }

    .composer-inner {
        max-width: none;
    }

    .composer {
        grid-template-columns: 1fr auto;
        gap: 8px;
        border-radius: 18px;
        padding: 6px;
        box-shadow: none;
    }

    textarea {
        min-height: 42px;
        max-height: 96px;
        font-size: 14px;
        padding: 9px 10px;
    }

    #sendBtn {
        height: 40px;
        min-width: 58px;
        padding: 0 13px;
        font-size: 14px;
        border-radius: 14px;
    }

    .composer-tip {
        display: none !important;
    }

    .session-panel {
        display: none !important;
    }

    .side-section .side-btn {
        display: none !important;
    }

    .session-modal-card {
        width: 100%;
        max-width: 440px;
        max-height: 82vh;
    }

    .quick-reports {
        margin: 0 0 8px;
        gap: 6px;
    }

    .quick-reports-head {
        display: none;
    }

    .quick-report-section {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 2px;
        gap: 6px;
    }

    .quick-report-section-title {
        flex: 0 0 auto;
        font-size: 12px;
        color: var(--text-muted);
        white-space: nowrap;
    }

    .quick-report-btn {
        flex: 0 0 auto;
        padding: 6px 9px;
        font-size: 12px;
        white-space: nowrap;
    }
}