/* style.css */
body {
  font-family: Arial, sans-serif;
  margin: 20px;
  background-color: #f4f4f9;
  color: #333;
}

h1 {
  text-align: center;
  color: #007bff;
}

#question-container {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 20px auto;
}

.category {
  font-weight: bold;
  margin-bottom: 10px;
  color: #555;
}

.options {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.options li {
  margin: 10px 0;
  list-style: none;
}

.options li::marker {
  display: none;
}

.options input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #007bff;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  margin-right: 10px;
  vertical-align: middle;
}

.options input[type="radio"]:checked {
  background-color: #007bff;
  border-color: #007bff;
}

.options label {
  cursor: pointer;
  vertical-align: middle;
}

button {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 20px;
  display: block;
  width: 100%;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}

button.disabled {
  background-color: #ccc;
  cursor: not-allowed;
  pointer-events: none;
}

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

#next-button {
  display: none;
}

.result {
  margin-top: 20px;
}
