body {
  font-family: Arial, sans-serif;
  background: #f7f7f7;
}
.container {
  max-width: 700px;
  margin: auto;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.score {
  font-size: 36px;
  font-weight: bold;
  color: #2563eb;
  margin-bottom: 5px;
}
.score-message {
  font-size: 16px;
  margin-bottom: 25px;
  color: #333;
}
h2 {
  margin-bottom: 25px;
}
.form-group {
  margin-bottom: 15px;
}
label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}
input,
select {
  width: 100%;
  padding: 10px;
  font-size: 16px;
}
.required {
  color: red;
}
.button-group {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
.btn {
  padding: 12px 25px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  border-radius: 6px;
}
.btn.primary {
  background: #2563eb;
  color: #fff;
}
.btn.secondary {
  background: #e5e7eb;
}

/* new */
.score {
  font-size: 48px;
  font-weight: 700;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 12px;
}

.score.red {
  background-color: #fee2e2;
  color: #991b1b;
}

.score.amber {
  background-color: #fef3c7;
  color: #92400e;
}

.score.green {
  background-color: #dcfce7;
  color: #166534;
}
