/* Add styles here */
/* General body styling for a clean aesthetic */
body {
  font-family: 'Arial', sans-serif;
  background-color: #f4f4f4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
  padding: 20px;
  color: #333;
}

/* Styling for textboxes */
textarea {
  width: 100%;
  max-width: 400px;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box; /* Include padding and border in element's total width */
  resize: none; /* Prevent user from resizing the textarea */
  font-size: 16px;
}

/* Styling for buttons */
button {
  background-color: #4CAF50; /* Green */
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 4px;
}

/* Hover effect for buttons */
button:hover {
  background-color: #45a049;
}

/* Remove indentation from the list in the results div */
#results ul {
  padding: 0; /* Remove padding */
  margin: 0; /* Remove margin */
  list-style: none; /* Remove bullet points if desired */
}

/* Center the text content within the results div */
#results {
  text-align: center;
}
