.hr-automation-quiz {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f4f7f8;
  padding: 30px;
  max-width: 700px;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  color: #333;
}
.hr-automation-quiz h1 {
  text-align: center;
  color: #0073e6;
}
.hr-automation-quiz .description {
  font-style: italic;
  text-align: center;
  margin-bottom: 25px;
}
.hr-automation-quiz .question {
  margin-bottom: 20px;
}
.hr-automation-quiz .question h3 {
  margin-bottom: 10px;
}
.hr-automation-quiz label {
  display: block;
  margin-bottom: 8px;
  cursor: pointer;
}
.hr-automation-quiz input[type="radio"] {
  margin-right: 8px;
}
.hr-automation-quiz button {
  display: block;
  width: 100%;
  padding: 12px;
  background-color: #0073e6;
  border: none;
  color: white;
  font-size: 18px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.hr-automation-quiz button:hover {
  background-color: #005bb5;
}
.hr-automation-quiz .result {
  margin-top: 30px;
  padding: 20px;
  background: #d9f2ff;
  border-radius: 6px;
  border: 1px solid #0073e6;
  color: #004a8c;
}
.hr-automation-quiz .result .score {
  font-size: 22px;
  color: #004a8c;
  font-weight: 700;
}
