body {
  font-family: Arial, sans-serif;
  background-color: #ddeded;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 700px;
  margin: 50px auto;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

h1 {
  text-align: center;
  color: #333;
}

.question {
  margin-bottom: 20px;
}

label {
  display: block;
  margin: 5px 0;
}

button {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

button:hover {
  background-color: #0056b3;
}

#resultado {
  margin-top: 20px;
  font-weight: bold;
  font-size: 18px;
}

.continuar {
  margin-top: 15px;
  background-color: green;
}

#scoreBarContainer {
  width: 100%;
  background-color: #e0e0e0;
  height: 25px;
  border-radius: 12px;
  margin-top: 15px;
  overflow: hidden;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

#scoreBar {
  height: 100%;
  width: 0%;
  background-color: #28a745; 
  text-align: center;
  line-height: 25px;
  color: white;
  font-weight: bold;
  transition: width 0.5s ease;
}

