#usernameInput{
  border-radius: 6px;
}

.scraper-container {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: 20px auto;
  font-family: system-ui, sans-serif;
}

label {
  font-weight: bold;
  margin-bottom: 8px;
  color: #333;
}

textarea {
  width: 100%;
  height: 250px;
  padding: 12px;
  font-family: "Courier New", Courier, monospace;
  font-size: 14px;
  border: 2px solid #ccc;
  border-radius: 6px;
  background-color: #fcfcfc;
  resize: vertical; 
  box-sizing: border-box;
}

textarea:focus {
  border-color: #228B22; 
  outline: none;
  background-color: #fff;
}

button {
  margin-top: 12px;
  padding: 12px;
  background-color: #228B22;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}

button:hover {
  background-color: #008000;
}

#validationFeedback {
  margin-top: 8px;
  font-weight: 500;
}
