/* Base Styles */
body {
  font-family: Arial, sans-serif;
  background-color: #FAF9F8; /* Warm White */
  color: #333;
}

#money-habits-quiz {
  max-width: 700px;
  margin: auto;
  padding: 20px;
  border: 1px solid #ECECEC; /* Pale Gray */
  border-radius: 10px;
  background-color: #FAF9F8; /* Warm White */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Section Styles */
.quiz-section {
  margin-bottom: 20px;
  padding: 15px;
  border-radius: 8px;
  background-color: #C9DFC8; /* Slightly darker Sage Green */
}

.quiz-section h2 {
  margin-bottom: 10px;
  color: #333;
}

/* Form Elements */
label {
  display: block;
  margin-bottom: 8px;
  background-color: #ECECEC; /* Pale Gray */
  padding: 8px;
  border-radius: 5px;
  cursor: pointer;
}

input[type="radio"] {
  margin-right: 10px;
}

button {
  background-color: #C4A4D8; /* Soft Lavender */
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background-color: #CBD6F7; /* Powdery Periwinkle */
}

/* Result Styles */
#quiz-result {
  margin-top: 30px;
  text-align: center;
}

#quiz-result h2 {
  color: #4B0082; /* Darker purple for contrast */
}

#feedback {
  color: #333;
  font-weight: bold;
  margin-top: 15px;
}

canvas {
  margin-top: 20px;
}
