body {
  margin: 0;
  padding: 0;
  background: #282a36; /* Dracula background color */
  color: #f8f8f2; /* Foreground text color */
  font-family: monospace;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

#editor {
  width: 80%;
  height: 60%;
  background: #44475a; /* Dracula editor background */
  border: 1px solid #6272a4; /* Subtle border */
  display: flex;
  flex-direction: column;
}

#content {
  flex: 1;
  padding: 10px;
  white-space: pre;
  overflow: auto;
  outline: none;
  cursor: text;
  color: #f8f8f2; /* Text color */
}

#status-bar {
  background: #000; /* Status bar matches Dracula theme */
  color: #fff;
  padding: 5px;
  font-size: 14px;
  text-align: left;
  display: flex;
  align-items: center; /* Center-align the text vertically */
}

.cursor {
  position: absolute;
  background: #ff79c6; /* Bright pink for the cursor */
  width: 1px;
  height: 1em;
  transform: translateY(2px); /* Align cursor with text baseline */
  z-index: 1; /* Ensure it overlays the text without altering it */
  pointer-events: none; /* Prevent the cursor from affecting user interaction */
}

a {
  color: inherit; /* Inherit the text color */
  text-decoration: underline; /* Only show underline */
}

a:hover {
  color: inherit; /* Keep the same color on hover */
  text-decoration: underline; /* Keep underline on hover */
}
