#quiz-container, #result-container {
  margin: auto;
  background: white;
  padding: 30px;
  border-radius: 10px;
}
#quiz-container {
  display: none;
  max-width: 800px;
}
#result-container h2 {
  text-align: center;
}
.question {
  margin-bottom: 30px;
}
.options {
  margin-top: 15px;
}
.options.vertical label {
  display: block;
  margin-bottom: 10px;
}
.options.horizontal-scale {
  display: flex;
  gap: 10px;
}
.options.horizontal-scale label {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
button {
  background: #5c8596;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
}
canvas {
  display: block;
  margin: 30px auto;
}

.table-light-sumood * {
  background-color: #467c94;
  color: white !important;
}










/* Container styling */
.question {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  max-width: 700px;
  margin: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.question h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #1e293b;
}

/* Style the radio group */
.options.vertical label {
  display: flex;
  align-items: center;
  background: #f1f5f9;
  padding: 14px 18px;
  margin-bottom: 12px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  position: relative;
}

/* Hide the default radio */
.options.vertical input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  border: 2px solid #94a3b8;
  border-radius: 50%;
  margin-right: 14px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: border 0.2s;
  background: #fff;
}

/* Custom checkmark when selected */
.options.vertical input[type="radio"]:checked {
  border-color: #3b82f6;
}

.options.vertical input[type="radio"]:checked::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  background: #3b82f6;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
}

/* Hover and selected label effect */
.options.vertical label:hover {
  background: #e2e8f0;
}

.options.vertical input[type="radio"]:checked + label {
  background: #dbeafe;
  border-color: #3b82f6;
  font-weight: 600;
}
