/* Variable Badge Styles */
.variable-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.035);
    color: var(--color-text-secondary, #888);
    border-radius: 4px;
    padding: 0px 4px;
    margin-right: 8px;
    font-size: 0.7em;
    font-weight: 500;
    font-family: var(--font-family-mono);
    user-select: none;
    line-height: 1.5;
    border: none;
    opacity: 0.85;
}

[data-theme="dark"] .variable-badge {
    background-color: rgba(255, 255, 255, 0.06);
    color: var(--color-text-secondary, #999);
}

/* Bold Output */
.output-line {
    font-weight: bold;
    overflow-x: auto;
    white-space: pre; /* Disable wrapping, allow scroll */
    scrollbar-width: thin; /* Firefox */
}

/* Custom scrollbar for output lines */
.output-line::-webkit-scrollbar {
    height: 4px;
}

.output-line::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.output-line::-webkit-scrollbar-track {
    background: transparent;
}

/* Context Menu Separator */
.nav-context-menu__separator {
    height: 1px;
    background-color: var(--color-stroke-subtle, #f3f3f3);
    margin: 4px 0;
}

[data-theme="dark"] .nav-context-menu__separator {
    background-color: rgba(255, 255, 255, 0.1);
}