.blinking-cursor {
    display: inline-block;
    font-size: inherit;
    color: #00ff00; /* Matches the text color */
    animation: blink 0.8s step-end infinite;
}

.blinking-cursor.completed {
    animation: none;
    opacity: 0; /* Optionally hide cursor after typing */
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}
