body {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.coding-container {
  width: 80%;
  max-width: 800px;
  margin-top: 50px; /* added margin to separate from top */
}

.coding-header {
  display: flex;
  justify-content: flex-end;
  padding: 10px 20px; /* adjusted padding for better spacing */
  background-color: #1e1e1e; /* dark gray */
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-left: 6px;
}

.red {
  background-color: #ff5f56; /* red */
}

.yellow {
  background-color: #ffbd2e; /* yellow */
}

.green {
  background-color: #27c93f; /* green */
}

.coding-box {
  min-height: 100px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 0 0 8px 8px; /* rounded bottom corners */
  background-color: #1e1e1e; /* dark gray */
  color: #abb2bf; /* light gray text */
  font-size: 16px;
  line-height: 1.5;
  overflow-y: auto; /* enable vertical scrollbar if needed */
  white-space: pre-wrap; /* preserve line breaks */
  position: relative; /* position relative for cursor */
}

.coding-box:focus {
  outline: none; /* remove default focus outline */
}
.no-js .js-required {
  display: block;
}
.js-required {
  display: none;
}