/* Global Styles */
body {
  background-color: #333;
  font-family: "Muli", sans-serif;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

/* Text Input Area */
#textInput {
  width: 100%;
  max-width: 600px;
  height: 200px;
  padding: 10px;
  font-size: 16px;
  line-height: 1.5;
  border: 1px solid #ccc;
  border-radius: 5px;
  resize: vertical;
  box-sizing: border-box;
}

/* Analyze Button */
#analyzeButton {
  padding: 12px 20px;
  font-size: 16px;
  background-color: #007bff;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#analyzeButton:hover {
  background-color: #0056b3;
}

/* Output Area */
#outputArea {
  margin-top: 30px;
  max-width: 600px;
}

/* Table Styles */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  background-color: #ffffff;
}

th,
td {
  padding: 12px 15px;
  border-bottom: 1px solid #ddd;
  text-align: left;
}

th {
  background-color: #007bff;
  color: #ffffff;
}

tr:nth-child(even) {
  background-color: #f9f9f9;
}

/* Responsive Design */
@media (max-width: 600px) {
  #textInput,
  #outputArea {
    width: 100%;
    max-width: none;
  }

  #analyzeButton {
    width: 100%;
    box-sizing: border-box;
  }
}
