/* Main wrapper */
.fakecode-wrapper {
  background: #1f1f2b;
  border-radius: 4px;
  overflow: hidden;
  font-family: 'Fira Code', monospace;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  margin: 1em 0;
}

/* Title bar */
.fakecode-topbar {
  background: #2a2a3b;
  color: #ccc;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Code body */
.fakecode-body {
  background: #1f1f2b;
  overflow-x: auto;
}

/* Each line */
.fakecode-line {
  display: flex;
  align-items: flex-start;
  padding: 0 15px;
  font-size: 14px;
  line-height: 1.5; /* Tighter, but still readable */
  white-space: pre-wrap;
}

/* Line numbers */
.fakecode-line .line-number {
  color: #666;
  width: 30px;
  text-align: right;
  margin-right: 10px;
  user-select: none;
  flex-shrink: 0;
}

/* Line content */
.fakecode-line .line-content {
  flex-grow: 1;
  color: #ccc;
}

/* Optional extra: highlight some keywords manually */
.fakecode-wrapper .line-content strong {
  color: #ffcb6b;
}

/* Comment style (optional, if you want to make comments gray) */
.fakecode-wrapper .line-content:before {
  content: '';
}
