:root {
    color-scheme: light;
    --bg: #ffffff;
    --sidebar: #f7f7f8;
    --sidebar-hover: #ececf1;
    --surface: #ffffff;
    --surface-soft: #f4f4f4;
    --surface-subtle: #fafafa;
    --line: #e5e5e5;
    --line-strong: #d2d2d2;
    --text: #111111;
    --muted: #6b6b6b;
    --faint: #9a9a9a;
    --accent: #10a37f;
    --accent-dark: #0d8065;
    --danger: #d92d20;
    --header-bg: rgba(255, 255, 255, 0.94);
    --header-border: rgba(0, 0, 0, 0.06);
    --composer-bg: #ffffff;
    --composer-border-top: rgba(0, 0, 0, 0.04);
    --shadow-soft: rgba(0, 0, 0, 0.08);
    --shadow-strong: rgba(0, 0, 0, 0.11);
    --code-bg: #f7f7f8;
    --code-head-bg: #ececf1;
    --code-border: #d9d9e3;
    --code-text: #1f2328;
    --code-muted: #5f6368;
    --send-bg: #111111;
    --send-fg: #ffffff;
    --logo-bg: #020713;
    --radius-lg: 18px;
    --radius-md: 12px;
    --content-width: 820px;
    --app-height: 100dvh;
    --font-ui: "SF Pro Text", "Inter", "Segoe UI", "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
    --font-mono: "SFMono-Regular", "Cascadia Code", "Consolas", monospace;
}

[data-theme="dark"] {
    color-scheme: dark;
    --bg: #212121;
    --sidebar: #171717;
    --sidebar-hover: #2f2f2f;
    --surface: #212121;
    --surface-soft: #2f2f2f;
    --surface-subtle: #262626;
    --line: #3a3a3a;
    --line-strong: #4a4a4a;
    --text: #ececec;
    --muted: #b4b4b4;
    --faint: #8f8f8f;
    --accent: #10a37f;
    --accent-dark: #10a37f;
    --danger: #ff6b5f;
    --header-bg: #212121;
    --header-border: transparent;
    --composer-bg: #2f2f2f;
    --composer-border-top: transparent;
    --shadow-soft: rgba(0, 0, 0, 0.28);
    --shadow-strong: rgba(0, 0, 0, 0.36);
    --code-bg: #171717;
    --code-head-bg: #262626;
    --code-border: #3a3a3a;
    --code-text: #ececec;
    --code-muted: #b4b4b4;
    --send-bg: #ececec;
    --send-fg: #171717;
    --logo-bg: #020713;
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

html {
    background: var(--bg);
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-ui);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 180ms ease, color 180ms ease;
}

button,
textarea {
    font: inherit;
}

button {
    -webkit-tap-highlight-color: transparent;
}

.app-shell {
    min-height: var(--app-height);
    display: grid;
    grid-template-columns: 284px minmax(0, 1fr);
    background: var(--bg);
}

[data-theme="dark"] body,
[data-theme="dark"] .app-shell,
[data-theme="dark"] .chat-shell {
    background: var(--bg);
}

.history-panel {
    height: var(--app-height);
    padding: 12px;
    background: var(--sidebar);
    border-right: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 13px;
}

.history-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 44px;
    padding: 2px 4px;
}

.brand-kicker {
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0;
}

.history-head h1 {
    margin: 1px 0 0;
    color: var(--text);
    font-size: 18px;
    line-height: 1.2;
    font-weight: 650;
}

.new-chat-btn,
.clear-history-btn,
.history-item {
    width: 100%;
    min-height: 38px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: var(--text);
    cursor: pointer;
    transition: background-color 160ms ease, transform 160ms ease, color 160ms ease;
}

.new-chat-btn {
    border: 1px solid var(--line);
    background: var(--surface);
    font-weight: 600;
}

.new-chat-btn:hover,
.clear-history-btn:hover,
.history-item:hover,
.history-item.active {
    background: var(--sidebar-hover);
}

.new-chat-btn:active,
.history-item:active {
    transform: scale(0.985);
}

.clear-history-btn {
    margin-top: auto;
    color: var(--muted);
}

.history-list {
    min-height: 0;
    overflow-y: auto;
    display: grid;
    gap: 4px;
    padding-right: 2px;
}

.history-item {
    text-align: left;
    padding: 8px 9px;
}

.history-item-title {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 13px;
}

.history-item-time {
    display: block;
    margin-top: 2px;
    color: var(--faint);
    font-size: 11px;
}

.chat-shell {
    min-width: 0;
    height: var(--app-height);
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    background: var(--bg);
}

.chat-header {
    min-height: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: max(7px, env(safe-area-inset-top)) 20px 7px;
    background: var(--header-bg);
    border-bottom: 1px solid var(--header-border);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

.assistant-mark {
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    border: 0;
    border-radius: 10px;
    background: var(--logo-bg);
    display: grid;
    place-items: center;
    overflow: hidden;
    box-shadow: none;
}

.assistant-mark img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1.24);
}

.chat-title {
    min-width: 0;
    flex: 1;
}

.title-row {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    flex-wrap: wrap;
}

.title-row strong {
    font-size: 16px;
    font-weight: 650;
    white-space: nowrap;
}

.model-pill {
    display: inline-flex;
    align-items: center;
    max-width: 190px;
    min-height: 20px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: var(--muted);
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

[data-theme="dark"] .model-pill {
    border: 0;
    background: transparent;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: 0 8px;
    border-radius: 999px;
    background: #eef8f4;
    color: var(--accent-dark);
    font-size: 12px;
    font-weight: 650;
    white-space: nowrap;
}

.status-pill.warn {
    background: #fff7ed;
    color: #b45309;
}

.status-pill.error {
    background: #fef2f2;
    color: var(--danger);
}

[data-theme="dark"] .status-pill {
    border: 1px solid rgba(57, 210, 192, 0.22);
    background: rgba(57, 210, 192, 0.14);
    color: var(--accent-dark);
}

[data-theme="dark"] .status-pill.warn {
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
}

[data-theme="dark"] .status-pill.error {
    background: rgba(255, 107, 95, 0.16);
    color: var(--danger);
}

.theme-switcher {
    position: relative;
    flex: 0 0 auto;
}

.portal-link {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    flex: 0 0 auto;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0 10px;
    color: var(--muted);
    text-decoration: none;
    font-size: 12px;
    transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease, transform 150ms ease;
}

.portal-link:hover {
    border-color: var(--line-strong);
    background: var(--surface-soft);
    color: var(--text);
    transform: translateY(-1px);
}

.portal-link svg {
    width: 16px;
    height: 16px;
    display: block;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.theme-toggle svg {
    width: 19px;
    height: 19px;
    display: block;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.messages {
    min-height: 0;
    overflow-y: auto;
    padding: 28px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    scroll-behavior: smooth;
}

.empty-state {
    width: min(var(--content-width), 100%);
    margin: auto;
    text-align: center;
    padding: 28px 12px 52px;
    animation: fadeUp 260ms ease both;
}

.empty-state h2 {
    margin: 0 0 10px;
    font-size: 30px;
    line-height: 1.25;
    font-weight: 650;
}

.empty-state p {
    max-width: 540px;
    margin: 0 auto;
    color: var(--muted);
    line-height: 1.7;
}

.starter-grid {
    width: min(620px, 100%);
    margin: 26px auto 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.starter-prompt {
    min-height: 76px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface);
    color: var(--text);
    padding: 13px 14px;
    text-align: left;
    cursor: pointer;
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.starter-prompt:hover {
    border-color: var(--line-strong);
    background: var(--surface-subtle);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px var(--shadow-soft);
}

.starter-prompt span,
.starter-prompt small {
    display: block;
}

.starter-prompt span {
    font-size: 14px;
    font-weight: 650;
}

.starter-prompt small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
}

.message-row {
    width: min(var(--content-width), 100%);
    margin: 0 auto;
    display: flex;
    animation: messageIn 220ms ease both;
}

.messages.is-streaming .message-row {
    animation: none;
}

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

.message-row.assistant {
    justify-content: flex-start;
}

.message {
    max-width: 100%;
}

.message-row.user .message {
    max-width: min(660px, 86%);
    padding: 12px 15px;
    border-radius: var(--radius-lg);
    background: var(--surface-soft);
}

.message-row.assistant .message {
    width: 100%;
    padding: 0;
}

.message-content {
    font-size: 15.5px;
    line-height: 1.78;
    letter-spacing: 0;
    overflow-wrap: anywhere;
}

.message-images {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.message-image {
    width: 128px;
    aspect-ratio: 4 / 3;
    border: 1px solid var(--line);
    border-radius: 10px;
    object-fit: cover;
    background: var(--surface-subtle);
}

.message-content h1,
.message-content h2,
.message-content h3 {
    margin: 18px 0 8px;
    line-height: 1.35;
    font-weight: 650;
}

.message-content h1 {
    font-size: 22px;
}

.message-content h2 {
    font-size: 19px;
}

.message-content h3 {
    font-size: 16px;
}

.message-content p {
    margin: 0 0 12px;
}

.message-content p:last-child,
.message-content ul:last-child,
.message-content ol:last-child,
.message-content pre:last-child,
.message-content blockquote:last-child,
.message-content table:last-child {
    margin-bottom: 0;
}

.message-content ul,
.message-content ol {
    margin: 0 0 12px;
    padding-left: 24px;
}

.message-content li {
    margin: 4px 0;
}

.message-content blockquote {
    margin: 0 0 12px;
    padding: 2px 0 2px 12px;
    border-left: 3px solid var(--line-strong);
    color: var(--muted);
}

.message-content hr {
    margin: 16px 0;
    border: 0;
    border-top: 1px solid var(--line);
}

.code-block {
    margin: 8px 0;
    overflow: hidden;
    border: 1px solid var(--code-border);
    border-radius: 10px;
    background: var(--code-bg);
    color: var(--code-text);
}

.code-head {
    min-height: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 8px 0 12px;
    border-bottom: 1px solid var(--code-border);
    background: var(--code-head-bg);
    color: var(--code-muted);
    font-family: var(--font-ui);
    font-size: 12px;
}

.message-content pre {
    margin: 8px 0;
    padding: 10px 12px;
    overflow-x: auto;
    border-radius: 10px;
    background: var(--code-bg);
    color: var(--code-text);
    font-size: 13px;
    line-height: 1.48;
}

.code-block pre {
    margin: 0;
    border-radius: 0;
}

.code-block.compact-code {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: stretch;
}

.code-block.compact-code .code-head {
    grid-column: 2;
    grid-row: 1;
    min-height: 0;
    height: 100%;
    border-bottom: 0;
    border-left: 1px solid var(--code-border);
    background: transparent;
    padding: 0 7px;
}

.code-block.compact-code .code-head span {
    display: none;
}

.code-block.compact-code pre {
    grid-column: 1;
    grid-row: 1;
    padding: 9px 12px;
}

.message-content code {
    padding: 2px 5px;
    border-radius: 5px;
    background: var(--surface-soft);
    font-family: var(--font-mono);
    font-size: 0.92em;
}

.message-content pre code {
    padding: 0;
    background: transparent;
    color: inherit;
}

.copy-code-btn,
.copy-message-btn,
.refresh-message-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-height: 28px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font-size: 12px;
    transition: background-color 150ms ease, color 150ms ease, transform 150ms ease, opacity 150ms ease;
}

.copy-code-btn {
    padding: 0 7px;
}

.copy-code-btn:hover {
    background: var(--surface-soft);
    color: var(--text);
}

.message-actions {
    display: flex;
    justify-content: flex-start;
    gap: 6px;
    margin-top: 7px;
    opacity: 0;
    transform: translateY(-2px);
    transition: opacity 160ms ease, transform 160ms ease;
}

.message-row.assistant:hover .message-actions,
.message-actions:focus-within {
    opacity: 1;
    transform: translateY(0);
}

.copy-message-btn,
.refresh-message-btn {
    padding: 0 9px;
    color: var(--muted);
}

.copy-message-btn:hover,
.copy-message-btn.copied,
.refresh-message-btn:hover:not(:disabled) {
    background: var(--surface-soft);
    color: var(--text);
}

.refresh-message-btn:disabled {
    cursor: default;
    opacity: 0.45;
}

.copy-code-btn.copied {
    color: var(--text);
}

.copy-code-btn svg,
.copy-message-btn svg,
.refresh-message-btn svg {
    width: 15px;
    height: 15px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.message-content a {
    color: var(--accent-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.message-content table {
    width: 100%;
    margin: 12px 0;
    border-collapse: collapse;
    font-size: 14px;
}

.message-content th,
.message-content td {
    border: 1px solid var(--line);
    padding: 8px 10px;
    text-align: left;
    vertical-align: top;
}

.message-content th {
    background: var(--surface-subtle);
    font-weight: 650;
}

.thinking {
    width: fit-content;
    max-width: 100%;
    margin-bottom: 12px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--surface-subtle);
    overflow: hidden;
}

.thinking summary {
    cursor: pointer;
    padding: 7px 10px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 650;
}

.thinking-body {
    padding: 0 10px 10px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.62;
    white-space: pre-wrap;
}

.typing-indicator {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-height: 28px;
    color: var(--muted);
}

.typing-indicator span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #8f8f8f;
    animation: typingPulse 1.1s infinite ease-in-out;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.14s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.28s;
}

.composer-wrap {
    padding: 10px 22px calc(18px + env(safe-area-inset-bottom));
    background: var(--bg);
    border-top: 0;
    transition: background-color 180ms ease;
}

.composer-wrap.drag-over {
    background: color-mix(in srgb, var(--accent) 7%, var(--bg));
}

[data-theme="dark"] .composer-wrap.drag-over {
    background: rgba(20, 42, 72, 0.6);
}

.attachment-tray,
.composer {
    width: min(var(--content-width), 100%);
    margin: 0 auto;
}

.attachment-tray {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding-bottom: 10px;
}

.attachment-card {
    position: relative;
    width: 86px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--surface-subtle);
    overflow: hidden;
    animation: fadeUp 160ms ease both;
}

.attachment-card img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.attachment-name {
    display: block;
    padding: 4px 6px 0;
    color: var(--muted);
    font-size: 11px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.attachment-size {
    display: block;
    padding: 1px 6px 6px;
    color: var(--faint);
    font-size: 10px;
    line-height: 1.2;
}

.remove-attachment {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 24px;
    height: 24px;
    border: 0;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.78);
    color: #fff;
    line-height: 1;
    cursor: pointer;
}

.composer {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    padding: 8px 8px 8px 10px;
    border: 1px solid var(--line-strong);
    border-radius: 24px;
    background: var(--composer-bg);
    box-shadow: 0 4px 18px var(--shadow-soft);
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

[data-theme="dark"] .composer {
    backdrop-filter: blur(12px);
}

.composer:focus-within {
    border-color: #b8b8b8;
    box-shadow: 0 8px 28px var(--shadow-strong);
    transform: translateY(-1px);
}

[data-theme="dark"] .composer:focus-within {
    border-color: #5f5f5f;
}

.composer-wrap.drag-over .composer {
    border-color: var(--accent);
    box-shadow: 0 10px 30px var(--shadow-strong);
}

.composer-tools {
    display: flex;
    align-items: center;
    gap: 2px;
    padding-bottom: 1px;
    flex: 0 0 auto;
}

.composer textarea {
    flex: 1 1 auto;
    min-width: 0;
    min-height: 38px;
    max-height: min(36vh, 340px);
    resize: none;
    border: 0;
    padding: 8px 4px;
    outline: none;
    background: transparent;
    color: var(--text);
    line-height: 1.5;
    overflow-y: hidden;
}

.send-btn,
.stop-btn,
.tool-btn,
.icon-btn {
    min-height: 38px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    transition: background-color 150ms ease, color 150ms ease, transform 150ms ease, opacity 150ms ease;
}

.tool-btn {
    width: 36px;
    min-width: 36px;
    padding: 0;
    background: transparent;
    color: var(--muted);
    display: inline-grid;
    place-items: center;
}

.tool-btn:hover {
    background: var(--surface-soft);
    color: var(--text);
}

.tool-btn:active,
.send-btn:active,
.stop-btn:active,
.icon-btn:active {
    transform: scale(0.94);
}

.send-btn,
.stop-btn {
    width: 38px;
    min-width: 38px;
    padding: 0;
    color: var(--send-fg);
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
}

.send-btn {
    background: var(--send-bg);
}

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

.send-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.tool-btn svg,
.send-btn svg,
.stop-btn svg {
    width: 20px;
    height: 20px;
    display: block;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.85;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.stop-btn svg rect {
    fill: currentColor;
    stroke: none;
}

.tool-btn.is-busy {
    opacity: 0.6;
}

.icon-btn {
    width: 38px;
    background: transparent;
    color: var(--text);
    font-size: 20px;
}

.icon-btn:hover {
    background: var(--surface-soft);
}

.icon-btn svg {
    width: 20px;
    height: 20px;
    display: block;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hidden,
.only-mobile {
    display: none;
}

.history-backdrop {
    display: none;
}

@keyframes typingPulse {
    0%, 80%, 100% {
        transform: translateY(0);
        opacity: 0.35;
    }
    40% {
        transform: translateY(-4px);
        opacity: 1;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes messageIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 760px) {
    .app-shell {
        display: block;
    }

    .history-panel {
        position: fixed;
        inset: 0 auto 0 0;
        width: min(84vw, 310px);
        z-index: 30;
        transform: translateX(-100%);
        transition: transform 180ms ease, box-shadow 180ms ease;
        box-shadow: none;
    }

    .history-panel.open {
        transform: translateX(0);
        box-shadow: 14px 0 34px rgba(0, 0, 0, 0.18);
    }

    .history-backdrop.open {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 20;
        background: rgba(0, 0, 0, 0.24);
    }

    .only-mobile {
        display: inline-grid;
        place-items: center;
    }

    .chat-header {
        min-height: 48px;
        padding: max(7px, env(safe-area-inset-top)) 9px 7px;
        gap: 8px;
    }

    .title-row strong {
        font-size: 15px;
    }

    .model-pill {
        min-height: 20px;
        font-size: 11px;
    }

    .model-pill {
        max-width: 86px;
    }

    .portal-link {
        width: 34px;
        min-height: 34px;
        justify-content: center;
        padding: 0;
    }

    .portal-link span {
        display: none;
    }

    .messages {
        padding: 18px 12px 16px;
        gap: 22px;
    }

    .message-row.user .message {
        max-width: 88%;
        padding: 10px 13px;
    }

    .message-content {
        font-size: 14.5px;
    }

    .message-actions {
        opacity: 1;
        transform: none;
    }

    .empty-state {
        padding: 24px 8px 42px;
    }

    .empty-state h2 {
        font-size: 24px;
    }

    .starter-grid {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 22px;
    }

    .starter-prompt {
        min-height: 64px;
    }

    .composer-wrap {
        padding: 8px 8px calc(10px + env(safe-area-inset-bottom));
    }

    .composer {
        gap: 5px;
        padding: 7px;
        border-radius: 22px;
    }

    .send-btn,
    .stop-btn {
        width: 38px;
        min-width: 38px;
    }

    .tool-btn {
        width: 36px;
        min-width: 36px;
    }

    .attachment-card {
        width: 76px;
    }
}

@media (max-width: 390px) {
    .message-row.user .message {
        max-width: 94%;
    }

    .composer-tools {
        gap: 0;
    }
}
