/* container base */
.csv-stack-root {
  position: relative;
  font-family: system-ui, -apple-system, "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 18px;
  line-height: 1.4;
  padding: 8px;
  border-radius: 8px;
  background: rgba(255,255,255,0.02);
  color: inherit;
  overflow: hidden;
}

/* line */
.csv-line {
  position: absolute;
  left: 8px;
  right: 8px;
  padding: 6px 8px;
  white-space: pre-wrap;
  box-sizing: border-box;
  border-radius: 6px;
  background: rgba(255,255,255,0.02);
  transition: top 360ms ease, opacity 360ms ease;
  opacity: 1;
  will-change: top, opacity;
}

/* cursor */
.csv-line .cursor {
	
  display: inline-block;
  margin-left: 2px;
  animation: blink 0.5s step-start 3; /* 0.3秒周期で3回チカチカして終了 */
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

	
/*	
  display: inline-block;
  width: 10px;
  margin-left: 4px;
  animation: st-blink 1s steps(2) infinite;
	
}
/* @keyframes st-blink { 50% { opacity:0 } 100% { opacity:1 } }
*/