body {
    background: #fff;
    color: #1f1f1f;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

body > header {
    display: none;
}

.claude-transcript {
    box-sizing: border-box;
    font-size: 18px;
    line-height: 1.43;
    margin: 0 auto;
    max-width: 980px;
    min-height: 100vh;
    padding: 31px 22px 72px;
}

.loading-line {
    color: #777;
}

.model-line {
    color: #777;
    font-size: 15px;
    margin: 0 0 6px;
}

.repo-line {
    font-size: 15px;
    margin: 0 0 18px;
}

.companion-line {
    font-size: 15px;
    margin: -8px 0 22px;
}

.repo-line a,
.companion-line a {
    color: #4e86ef;
    text-decoration: none;
}

.repo-line a:hover,
.companion-line a:hover {
    text-decoration: underline;
}

.video-block {
    margin: 0 0 42px;
}

.video-block video {
    background: #111;
    border-radius: 10px;
    display: block;
    width: 100%;
}

.video-block figcaption {
    color: #777;
    font-size: 14px;
    margin-top: 8px;
}

.prompt-bubble {
    background: #f0f0f0;
    border-radius: 14px;
    box-sizing: border-box;
    margin: 0 0 58px auto;
    max-width: 720px;
    padding: 14px 18px 12px;
}

.prompt-bubble.user-turn {
    margin-bottom: 36px;
    margin-top: 34px;
}

.message {
    margin: 0 0 16px;
    overflow-wrap: anywhere;
    white-space: pre-wrap;
}

.assistant-line {
    margin-bottom: 18px;
}

.tool-line {
    color: #777;
    cursor: default;
    margin: -2px 0 17px;
}

.tool-line.is-hot {
    color: #c93a62;
}

.tool-line summary {
    cursor: pointer;
    display: inline;
    list-style: none;
}

.tool-line summary::-webkit-details-marker {
    display: none;
}

.chevron {
    color: inherit;
    display: inline-block;
    margin-left: 6px;
    transition: transform 120ms ease;
}

.tool-line[open] > summary > .chevron,
.tool-item[open] > summary .tool-item-chevron {
    transform: rotate(90deg);
}

.tool-panel {
    border: 1px solid #e9e9e9;
    border-radius: 10px;
    box-sizing: border-box;
    margin: 14px 0 20px;
    padding: 16px 20px;
}

.tool-item {
    color: #6f6f6f;
    display: block;
    font-size: 18px;
    line-height: 1.45;
    margin: 0 0 9px;
}

.tool-item:last-child {
    margin-bottom: 0;
}

.tool-item summary {
    cursor: pointer;
    display: block;
    list-style: none;
}

.tool-item summary::-webkit-details-marker {
    display: none;
}

.tool-action {
    color: #737373;
}

.tool-name {
    color: #161616;
}

.tool-item-chevron {
    color: #737373;
}

.tool-item-detail {
    background: #f7f7f7;
    border-radius: 8px;
    box-sizing: border-box;
    color: #555;
    font-family: Menlo, Monaco, Consolas, "Liberation Mono", monospace;
    font-size: 14px;
    line-height: 1.45;
    margin: 10px 0 8px;
    max-height: 360px;
    max-width: 100%;
    overflow: auto;
    overflow-wrap: anywhere;
    padding: 12px;
    white-space: pre-wrap;
}

.section-heading {
    color: #777;
    font-weight: 700;
    margin: 2px 0 13px;
}

.table-wrap {
    margin: 6px 0 18px;
    overflow-x: auto;
}

.markdown-table {
    border-collapse: collapse;
    font-size: 16px;
    min-width: 520px;
    width: 100%;
}

.markdown-table th,
.markdown-table td {
    border-bottom: 1px solid #e6e6e6;
    padding: 9px 11px;
    text-align: left;
    vertical-align: top;
}

.markdown-table th {
    color: #666;
    font-weight: 700;
}

.message strong {
    font-weight: 700;
}

.message a {
    color: #4e86ef;
    text-decoration: none;
}

.message a:hover {
    text-decoration: underline;
}

.theme-codex {
    color: #0f172a;
}

.theme-codex .model-line,
.theme-codex .section-heading {
    color: #47617f;
}

.theme-codex .repo-line a,
.theme-codex .companion-line a,
.theme-codex .message a {
    color: #0f5ef7;
}

.theme-codex .prompt-bubble {
    background: #eef5ff;
    border: 1px solid #cfe0ff;
}

.theme-codex .tool-line {
    color: #527190;
}

.theme-codex .tool-line.is-hot {
    color: #0f5ef7;
}

.theme-codex .tool-panel {
    border-color: #dbe7fb;
}

.theme-codex .tool-action,
.theme-codex .tool-item,
.theme-codex .tool-item-chevron {
    color: #527190;
}

.theme-codex .tool-name {
    color: #0f172a;
}

.theme-codex .tool-item-detail {
    background: #f6f9ff;
    color: #26384f;
}

.theme-codex .markdown-table th {
    color: #365b86;
}

.theme-codex .markdown-table th,
.theme-codex .markdown-table td {
    border-bottom-color: #dbe7fb;
}

.theme-codex code {
    background: #edf4ff;
}

code {
    background: #f2f2f2;
    border-radius: 5px;
    font-family: Menlo, Monaco, Consolas, "Liberation Mono", monospace;
    font-size: 0.86em;
    overflow-wrap: anywhere;
    padding: 1px 4px;
    white-space: pre-wrap;
}

@media (max-width: 767px) {
    .claude-transcript {
        font-size: 17px;
        padding: 18px 14px 48px;
    }

    .prompt-bubble {
        margin-bottom: 38px;
        max-width: none;
        padding: 13px 15px;
    }

    .prompt-bubble.user-turn {
        margin-bottom: 28px;
        margin-top: 28px;
    }

    .markdown-table {
        font-size: 15px;
        min-width: 440px;
    }
}
