/* Styling Was Generated Using Claude and Editing off of it */
body{
  background: peru;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding: 20px;
  max-width: 800px;
  margin: 0 auto;
}

h1 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 10px;
}

h2 {
  text-align: center;
  color: #34495e;
  font-size: 1.2em;
}

h3{
  margin-top: 40px;
}

/* Answers Section */
ul.chatMessages {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 30px 0;
  flex-direction: column;
  justify-content: center;
}

li.message {
  list-style-type: none;
  background: white;
  border: 2px solid #3498db;
  border-radius: 12px;
  padding: 15px 20px;
  display: grid;
  grid-template-columns: 150px 1fr auto auto auto auto;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

li.message:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border-color: #2980b9;
}

/* Name styling */
li.message span:nth-child(1) {
  font-weight: bold;
  color: #2c3e50;
  font-size: 1.1em;
}

/* Answer text styling */
li.message span:nth-child(2) {
  color: #34495e;
  font-size: 1.05em;
}

/* Thumb count */
li.message span:nth-child(3) {
  font-weight: bold;
  color: #27ae60;
  font-size: 1.1em;
}

/* Icon styling */
li.message span i {
  cursor: pointer;
  font-size: 1.3em;
  transition: all 0.2s ease;
  padding: 5px;
}

li.message span:nth-child(4) i {
  color: #27ae60;
}

li.message span:nth-child(4) i:hover {
  color: #229954;
  transform: scale(1.2);
}

li.message span:nth-child(5) i {
  color: #e74c3c;
}

li.message span:nth-child(5) i:hover {
  color: #c0392b;
  transform: scale(1.2);
}

li.message span:nth-child(6) i {
  color: #95a5a6;
}

li.message span:nth-child(6) i:hover {
  color: #7f8c8d;
  transform: scale(1.2);
}

/* Form styling */
input[type="text"] {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  width: 35%;
  padding: 12px 15px;
  border: 2px solid #bdc3c7;
  border-radius: 8px;
  font-size: 1em;
  margin: 8px 5px;
  transition: border-color 0.3s ease;
}

input[type="text"]:focus {
  outline: none;
  border-color: #3498db;
}

button#submit {
  padding: 12px 30px;
  background: #3498db;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 10px 5px;
}

button#submit:hover {
  background: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

button#submit:active {
  transform: translateY(0);
}

#trueAnswer{
  display: none;
}
