/* Core styles owned by the reusable embedded chat component. */

.tl-main {
    flex-grow: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

.tl-empty-pane {
    padding: 48px;
    text-align: center;
    color: #6c757d;
}

.tl-header {
    padding: 12px 16px;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    /* When the right pane opens .tl-main shrinks; without wrap the wide
       usage badge would push the action buttons past .tl-main's clipped
       (overflow:hidden) edge and behind the pane, making them
       unclickable. Wrapping lets the buttons drop to a new line instead. */
    flex-wrap: wrap;
}

.tl-header-title {
    margin: 0;
    font-size: 1.25rem;
    cursor: pointer;
}

.tl-header-title:hover {
    color: #0d6efd;
}

.tl-header-title-edit {
    flex-grow: 1;
    font-size: 1.25rem;
    padding: 4px 8px;
    border: 1px solid #0d6efd;
    border-radius: 4px;
}

.tl-header-actions {
    display: flex;
    gap: 8px;
    /* Never let the action buttons be the element that gets squeezed
       out — the wide usage badge yields space instead (see below). */
    flex-shrink: 0;
}

/* ---- Connection-status pill (issue #122) -------------------- */

.tl-conn-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 2px 8px;
    font-size: 0.72rem;
    font-weight: 500;
    border-radius: 12px;
    border: 1px solid transparent;
    white-space: nowrap;
    cursor: default;
    margin-right: 8px;
}

.tl-conn-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
}

.tl-conn-live {
    color: #157347;
    background: #d1f0db;
    border-color: #a3dcb6;
}

.tl-conn-warn {
    color: #8a6d10;
    background: #fff3cd;
    border-color: #f5d97a;
}
.tl-conn-warn .tl-conn-dot {
    /* Subtle pulse so the user notices the reconnect attempt. */
    animation: tl-conn-pulse 1.2s ease-in-out infinite;
}

.tl-conn-danger {
    color: #842029;
    background: #f8d7da;
    border-color: #f1aeb5;
}

.tl-conn-muted {
    color: #6c757d;
    background: #f8f9fa;
    border-color: #dee2e6;
}

@keyframes tl-conn-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
}

/* ---- Usage badge (token / context indicator) -------------------- */

.tl-usage-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.75rem;
    color: #495057;
    padding: 2px 8px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    white-space: nowrap;
    cursor: default;
    margin-left: auto;
    margin-right: 8px;
    /* Let the badge be the flexible element: allow it to shrink below its
       content and clip, so a tight header sacrifices badge detail rather
       than ejecting the action buttons. */
    min-width: 0;
    overflow: hidden;
}

.tl-usage-context {
    font-weight: 600;
}

.tl-usage-context.tl-usage-ok    { color: #198754; }
.tl-usage-context.tl-usage-warn  { color: #b88600; }
.tl-usage-context.tl-usage-danger{ color: #dc3545; }

.tl-usage-pct {
    font-weight: 400;
    margin-left: 2px;
    opacity: 0.85;
}

.tl-usage-sep {
    color: #adb5bd;
}

.tl-usage-cached {
    color: #6c757d;
}

.tl-usage-cost {
    color: #155724;
    background: #e9f7ef;
    padding: 1px 6px;
    border-radius: 8px;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

.tl-timeline {
    flex-grow: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tl-bubble {
    padding: 10px 14px;
    border-radius: 12px;
    max-width: 80%;
    word-wrap: break-word;
}

/* Issue #124: Virtualize off-viewport placeholder. Same default
   height as <Virtualize>'s ItemSize hint so the scrollbar stays
   stable as items materialize. */
.tl-bubble-placeholder {
    height: 80px;
}

.tl-bubble-user {
    align-self: flex-end;
    background: #0d6efd;
    color: white;
}

.tl-bubble-assistant {
    align-self: flex-start;
    background: #f1f3f5;
    color: #212529;
}

.tl-bubble-tool-result {
    align-self: flex-start;
    background: #fff3cd;
    border: 1px solid #ffe69c;
    max-width: 90%;
}

.tl-bubble-tool-result.tl-tool-result-error {
    background: #f8d7da;
    border-color: #f5c2c7;
}

.tl-tool-result-header {
    color: #6c757d;
    margin-bottom: 4px;
}

.tl-tool-result-content {
    margin: 0;
    white-space: pre-wrap;
    font-size: 0.9rem;
}

.tl-bubble-unknown {
    align-self: stretch;
    background: #f8d7da;
    color: #842029;
}

.tl-tool-chip {
    align-self: flex-start;
    max-width: 90%;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    background: white;
}

.tl-tool-chip-header {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.9rem;
}

.tl-tool-chip-name {
    font-weight: 500;
    font-family: ui-monospace, monospace;
}

.tl-tool-chip-status {
    color: #6c757d;
    font-size: 0.8rem;
}

.tl-tool-chip-toggle {
    margin-left: auto;
    color: #6c757d;
}

.tl-tool-chip.tl-tool-running {
    border-color: #ffe69c;
    background: #fff8e1;
}

.tl-tool-chip.tl-tool-done {
    border-color: #badbcc;
    background: #d1e7dd;
}

.tl-tool-chip.tl-tool-error {
    border-color: #f5c2c7;
    background: #f8d7da;
}

.tl-tool-chip-result-label,
.tl-tool-chip-args-label {
    margin: 8px 0 2px 0;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #6c757d;
    font-weight: 600;
}

.tl-tool-chip-result {
    margin: 0;
    padding: 8px;
    background: #f8f9fa;
    border-radius: 4px;
    max-height: 300px;
    overflow-y: auto;
    font-size: 0.85rem;
    white-space: pre-wrap;
}

.tl-tool-chip-args {
    margin-top: 8px;
}

.tl-tool-chip-args-body {
    margin: 0;
    padding: 8px;
    background: #eef2f7;
    border-left: 3px solid #6f7780;
    border-radius: 4px;
    max-height: 220px;
    overflow: auto;
    font-size: 0.78rem;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    white-space: pre;
}

.tl-tool-chip-args-truncated {
    display: block;
    margin-top: 4px;
    color: #6c757d;
    font-style: italic;
}

.tl-tool-chip-progress {
    margin-top: 6px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tl-tool-chip-progress-bar {
    height: 4px;
    background: #e9ecef;
    border-radius: 2px;
    overflow: hidden;
}

.tl-tool-chip-progress-fill {
    height: 100%;
    background: #0d6efd;
    transition: width 0.2s ease-out;
}

.tl-tool-chip-progress-text {
    color: #6c757d;
    font-family: ui-monospace, monospace;
    font-size: 0.75rem;
}

.tl-typing-dots {
    display: inline-flex;
    gap: 4px;
}

.tl-typing-dots span {
    width: 6px;
    height: 6px;
    background: #6c757d;
    border-radius: 50%;
    animation: tl-typing 1.4s infinite ease-in-out;
}

.tl-typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.tl-typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes tl-typing {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-4px); opacity: 1; }
}

.tl-cursor {
    color: #0d6efd;
    animation: tl-blink 1s infinite step-end;
}

@keyframes tl-blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.tl-busy-indicator {
    align-self: flex-start;
    color: #6c757d;
    font-style: italic;
    padding: 4px 12px;
}

/* Issue #121: sticky pill the Timeline shows when the user has
   scrolled up + new content streamed in. Anchored bottom-right of
   the .tl-timeline scroll viewport. */
.tl-new-below-pill {
    position: sticky;
    bottom: 16px;
    align-self: center;
    background: #0d6efd;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 0.85rem;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.35);
    cursor: pointer;
    z-index: 5;
    animation: tl-pill-fade-in 0.2s ease-out;
}

.tl-new-below-pill:hover {
    background: #0b5ed7;
}

@keyframes tl-pill-fade-in {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.tl-banner {
    padding: 10px 14px;
    border-radius: 8px;
    margin: 0 4px;
}

.tl-banner-error {
    background: #f8d7da;
    color: #842029;
    border: 1px solid #f5c2c7;
}

.tl-composer {
    border-top: 1px solid #dee2e6;
    padding: 12px 16px;
    background: #f8f9fa;
}

.tl-composer-hint {
    color: #6c757d;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.tl-composer-input-row {
    display: flex;
    gap: 8px;
    align-items: flex-end;
}

.tl-composer-textarea {
    flex-grow: 1;
    resize: vertical;
    min-height: 48px;
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid #ced4da;
    font-family: inherit;
}

.tl-composer-textarea:focus {
    outline: none;
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.tl-composer-send {
    flex-shrink: 0;
    min-width: 80px;
}

.tl-form-host {
    align-self: stretch;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 16px;
    margin: 8px 0;
}

/* FormRenderer overrides (the component itself uses .form-renderer-*) */
.form-renderer .form-field {
    margin-bottom: 12px;
}

.form-renderer label {
    display: block;
    font-weight: 500;
    margin-bottom: 4px;
}

.form-renderer .required-marker {
    color: #dc3545;
}

.form-renderer .form-control {
    width: 100%;
    padding: 6px 10px;
    border: 1px solid #ced4da;
    border-radius: 4px;
}

.form-renderer .form-field-help {
    display: block;
    color: #6c757d;
    margin-top: 4px;
}

.form-renderer .form-field-stub {
    color: #6c757d;
    font-style: italic;
    padding: 8px;
    background: #fff3cd;
    border-radius: 4px;
}

.form-renderer .form-actions {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.form-renderer-error {
    color: #842029;
    background: #f8d7da;
    border: 1px solid #f5c2c7;
    padding: 12px;
    border-radius: 8px;
}

.form-renderer-empty {
    color: #6c757d;
    font-style: italic;
    padding: 12px;
}

/* Image artifacts a tool produced (autonomous-run / workflow / failure
   screenshots), rendered inline under the tool chip via ToolUseImageEvent. */
.tl-chat-image-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 4px 0 4px 28px; /* indent so it lines up under the chip body */
}

.tl-chat-image {
    max-width: 100%;
}

.tl-chat-image-loading {
    color: #6c757d;
    font-style: italic;
    font-size: 0.8rem;
    padding: 8px 10px;
    border: 1px dashed #ced4da;
    border-radius: 8px;
}

.tl-chat-image-figure {
    margin: 0;
    display: inline-block;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.tl-chat-image-img {
    display: block;
    max-width: 280px;
    max-height: 200px;
    object-fit: contain;
    cursor: zoom-in;
    transition: max-width 0.15s ease, max-height 0.15s ease;
}

.tl-chat-image-expanded .tl-chat-image-img {
    max-width: min(820px, 90vw);
    max-height: min(640px, 80vh);
    cursor: zoom-out;
}

.tl-chat-image-caption {
    padding: 4px 8px;
    font-size: 0.74rem;
    color: #495057;
    border-top: 1px solid #f1f3f5;
    max-width: 280px;
}

.tl-chat-image-expanded .tl-chat-image-caption {
    max-width: min(820px, 90vw);
}

.tl-chat-image-fallback {
    display: inline-block;
    padding: 6px 10px;
    font-size: 0.8rem;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    background: #fff;
    color: #0d6efd;
    cursor: pointer;
    text-decoration: none;
}

.tl-chat-image-fallback:hover {
    background: #f1f3f5;
}

.tl-chat-image-fallback:disabled {
    color: #6c757d;
    cursor: default;
}

/* Markdown code blocks, tables, and copy controls owned by the embedded chat. */

.markdown-content pre.sm-codeblock {
    position: relative;
    padding: 0.75rem;
    border-radius: 6px;
    overflow-x: auto;
}

.markdown-content pre.sm-codeblock > code {
    /* Reset Bootstrap reboot pre/code padding so highlight.js's theme
       paint isn't double-inset. */
    padding: 0;
    background: transparent;
    font-size: 0.875em;
}

.markdown-content pre.sm-codeblock > .sm-copy-btn {
    position: absolute;
    top: 6px;
    inset-inline-end: 6px;          /* RTL-aware via logical property */
    padding: 2px 8px;
    font-size: 0.7rem;
    line-height: 1.4;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.12);
    color: inherit;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.12s ease, background 0.12s ease;
}

.markdown-content pre.sm-codeblock:hover > .sm-copy-btn,
.markdown-content pre.sm-codeblock:focus-within > .sm-copy-btn {
    opacity: 1;
}

.markdown-content pre.sm-codeblock > .sm-copy-btn:hover {
    background: rgba(255, 255, 255, 0.22);
}

/* Inline code (single-backtick) — leave to Bootstrap reboot but
   tighten the contrast inside message bubbles. */
/* Host styles may remove list markers globally. Keep Markdown lists readable. */
.markdown-content ul {
    list-style-type: disc;
}

.markdown-content ul ul {
    list-style-type: circle;
}

.markdown-content ul ul ul {
    list-style-type: square;
}

.markdown-content ol {
    list-style-type: decimal;
}

.markdown-content code:not(pre code) {
    padding: 0.1em 0.35em;
    font-size: 0.875em;
    border-radius: 3px;
    background: rgba(135, 131, 120, 0.15);
}

/* Markdown tables — self-contained styling. The app's global `.table` rules
   (data-grid styling) force every cell transparent and cancel striping, which
   made chat tables look flat AND let body rows bleed through the header on
   scroll. These rules override that under `.markdown-content` and live in a
   scrollable frame (added by sailorMarkdown.decorate) with a solid, pinned
   header. Theme-aware via Bootstrap 5.3 variables (adapts to data-bs-theme). */
.md-table-frame {
    position: relative;
    margin: 0.5rem 0;
}

.md-table-wrap {
    max-width: 100%;
    max-height: 70vh;
    overflow: auto;                       /* wide → scroll X; tall → scroll Y, header pins */
    border: 1px solid var(--bs-border-color, #dee2e6);
    border-radius: 0.5rem;
    background: var(--bs-body-bg, #fff);
}

.markdown-content table.markdown-table {
    margin: 0;
    width: auto;
    min-width: 100%;
    font-size: 0.8125rem;
    border-collapse: separate;            /* keep cell borders with a sticky header */
    border-spacing: 0;
    color: var(--bs-body-color, #212529);
    background: var(--bs-body-bg, #fff);
}

/* Opaque cells with real padding — beats `.table > :not(caption) > * > *`
   (which forces transparent) on specificity, so nothing shows through. */
.markdown-content table.markdown-table > thead > tr > th,
.markdown-content table.markdown-table > tbody > tr > td {
    padding: 0.45rem 0.7rem;
    border: 0;
    border-bottom: 1px solid var(--bs-border-color, #e9ecef);
    text-align: start;
    vertical-align: top;
    white-space: nowrap;
    background-color: var(--bs-body-bg, #fff);
}

/* Restore zebra striping (the global rule sets it transparent). */
.markdown-content table.markdown-table > tbody > tr:nth-of-type(even) > td {
    background-color: var(--bs-tertiary-bg, #f6f7f9);
}

.markdown-content table.markdown-table > tbody > tr:hover > td {
    background-color: var(--bs-secondary-bg, #eceef1);
}

/* Pinned, OPAQUE header — stays put while the body scrolls; the solid
   background is what stops body text bleeding through (the reported bug).
   z-index:3 (not 1) is required: the app's global `.table` rule sits at
   `z-index:2` with `position:relative` rows, whose cells otherwise paint
   OVER the sticky header in the table's row-group paint order. */
.markdown-content table.markdown-table > thead > tr > th {
    position: sticky;
    top: 0;
    z-index: 3;
    font-weight: 600;
    white-space: nowrap;
    background-color: var(--bs-secondary-bg, #eceef1);
    border-bottom: 2px solid var(--bs-border-color, #dee2e6);
}

/* Expand-to-full-screen button, pinned to the frame's top-end corner. */
.md-table-expand {
    position: absolute;
    top: 0.35rem;
    inset-inline-end: 0.35rem;
    z-index: 3;
    width: 1.75rem;
    height: 1.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 0.95rem;
    line-height: 1;
    cursor: pointer;
    border: 1px solid var(--bs-border-color, #dee2e6);
    border-radius: 0.375rem;
    background: var(--bs-body-bg, #fff);
    color: var(--bs-secondary-color, #6c757d);
    opacity: 0;
    transition: opacity 0.12s ease, color 0.12s ease, background-color 0.12s ease;
}

.md-table-frame:hover .md-table-expand,
.md-table-expand:focus-visible {
    opacity: 1;
}

.md-table-expand:hover {
    color: var(--bs-primary, #0d6efd);
    background: var(--bs-tertiary-bg, #f6f7f9);
}

/* Full-screen overlay (built by sailorMarkdown.openTableFullscreen). */
.md-table-overlay {
    position: fixed;
    inset: 0;
    z-index: 1080;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5vh 2.5vw;
    background: rgba(0, 0, 0, 0.55);
}

.md-table-overlay-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 96vw;
    max-height: 95vh;
    background: var(--bs-body-bg, #fff);
    border-radius: 0.6rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.md-table-overlay-bar {
    display: flex;
    justify-content: flex-end;
    padding: 0.5rem;
    border-bottom: 1px solid var(--bs-border-color, #dee2e6);
}

.md-table-overlay-close {
    padding: 0.3rem 0.7rem;
    cursor: pointer;
    border: 1px solid var(--bs-border-color, #dee2e6);
    border-radius: 0.375rem;
    background: var(--bs-body-bg, #fff);
    color: var(--bs-body-color, #212529);
}

.md-table-overlay-close:hover {
    background: var(--bs-secondary-bg, #eceef1);
}

.md-table-overlay-scroll {
    overflow: auto;
    padding: 0.25rem 0.75rem 0.75rem;
}

/* The cloned table is no longer inside a .md-table-wrap, so the overlay-scroll
   is its scroll container — its sticky header pins to the top of the overlay. */
.md-table-overlay-scroll table.markdown-table {
    min-width: 100%;
}

/* RTL-aware: code is always LTR even inside RTL paragraphs. inset-inline-end
   above handles the Copy button direction; this flips the block's text
   direction so the syntax tokens still align correctly. */
[dir="rtl"] .markdown-content pre.sm-codeblock {
    direction: ltr;
    text-align: start;
}

/* Chart container sizing required by ChartBlock. */
.sm-chartblock-host {
    width: 100%;
}

.sm-chartblock {
    width: 100%;
    min-height: 320px;
}

/* Dark-theme styles for the embedded chat surface. */
[data-theme="dark"] .tl-main {
    background: #0f172a;
    border-color: #334155;
}

[data-theme="dark"] .tl-empty-pane {
    color: #94a3b8;
}

[data-theme="dark"] .tl-header {
    border-bottom-color: #334155;
    background: #1e293b;
    color: #e2e8f0;
}

[data-theme="dark"] .tl-header-title {
    color: #f1f5f9;
}

[data-theme="dark"] .tl-header-status,
[data-theme="dark"] .tl-header-meta {
    color: #94a3b8;
}

[data-theme="dark"] .tl-timeline {
    background: #0f172a;
    color: #e2e8f0;
}

[data-theme="dark"] .tl-composer,
[data-theme="dark"] .tl-composer-form {
    background: #1e293b;
    border-color: #334155;
    color: #e2e8f0;
}

[data-theme="dark"] .tl-composer textarea,
[data-theme="dark"] .tl-composer input[type="text"] {
    background: #0f172a;
    border-color: #334155;
    color: #e2e8f0;
}

[data-theme="dark"] .tl-composer textarea::placeholder {
    color: #64748b;
}

[data-theme="dark"] .tl-tool-chip,
[data-theme="dark"] .tl-tool-result-chip {
    background: #1e293b;
    border-color: #334155;
    color: #e2e8f0;
}

[data-theme="dark"] .tl-tool-chip-error {
    background: #3b1414;
    border-color: #7f1d1d;
    color: #fecaca;
}

[data-theme="dark"] .tl-tool-args,
[data-theme="dark"] .tl-tool-preview {
    background: #0f172a;
    color: #cbd5e1;
}

[data-theme="dark"] .tl-bubble-user {
    background: #1d4ed8;
    color: #f8fafc;
}

[data-theme="dark"] .tl-bubble-assistant {
    background: #1e293b;
    border-color: #334155;
    color: #e2e8f0;
}

/* Markdown content inside the assistant bubble */
[data-theme="dark"] .tl-bubble-assistant code,
[data-theme="dark"] .tl-bubble-assistant pre {
    background: #0f172a;
    color: #f1f5f9;
}

[data-theme="dark"] .tl-bubble-assistant pre {
    border: 1px solid #334155;
}

[data-theme="dark"] .tl-bubble-assistant blockquote {
    border-left-color: #475569;
    color: #cbd5e1;
}

[data-theme="dark"] .tl-bubble-assistant a {
    color: #60a5fa;
}

[data-theme="dark"] .tl-bubble-assistant table {
    border-color: #334155;
}

[data-theme="dark"] .tl-bubble-assistant th,
[data-theme="dark"] .tl-bubble-assistant td {
    border-color: #334155;
}

/* Inline action chips. */

[data-theme="dark"] .tl-action-chip {
    background: #1e293b;
    border-color: #475569;
    color: #e2e8f0;
}

[data-theme="dark"] .tl-action-chip:hover {
    background: #334155;
    border-color: #60a5fa;
    color: #f1f5f9;
}

/* Native artifacts rendered inline at the producing tool call. */
.tl-extension-block {
    margin: 6px 0;
}

.tl-native-artifact-fallback {
    background: #f8f9fa;
    border: 1px dashed #ced4da;
    border-radius: 12px;
    padding: 10px 14px;
    color: #495057;
    font-size: 0.9rem;
}

.tl-native-artifact-title {
    font-weight: 600;
}

.tl-native-artifact-kind {
    color: #6c757d;
    font-size: 0.85rem;
}

.tl-native-artifact-note {
    color: #868e96;
    font-size: 0.8rem;
    margin-top: 4px;
}
