/* Fix line number positioning */
#wrapper {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
  display: flex;
  flex-direction: row;
}

/* Ensure line numbers are on the left */
.tln-wrapper {
  order: 1;
  background-color: #f8f9fa;
  border-right: 1px solid #e2e8f0;
  min-height: 200px;
}

.tln-active {
  order: 2;
  border-left: none !important;
  min-height: 200px;
}

/* Disable scrolling */
.tln-active, .tln-wrapper {
  overflow-y: hidden !important;
}