#stress-test {
  max-width: 700px;
  margin: 0 auto;
  font-family: sans-serif;
}

#progress-container {
  width: 100%;
  background-color: #eee;
  border-radius: 6px;
	border-width: 1px;
	border-style: solid;
  border-color: white;
  height: 12px;
  margin-bottom: 20px;
  overflow: hidden;
}

#progress-bar {
  height: 100%;
  width: 0%;
  background-color: #046E6E;
  transition: width 0.5s ease-in-out;
}

.question {
  background: #f9f9f9;
  padding: 20px;
  border-left: 4px solid #046E6E;
  margin-bottom: 20px;
  border-radius: 4px;
}

.question p {
  font-size: 1.1em;
  margin-bottom: 15px;
}

.question button {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  background-color: #C2A990;
  color: white;
  border: none;
  padding: 12px;
  font-size: 1em;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.question button:hover {
  background-color: #a58d78;
}

.bar-container {
  width: 100%;
  background-color: #eee;
  border-radius: 6px;
  margin: 20px 0;
  height: 20px;
}

#bar {
  height: 100%;
  width: 0;
  background-color: #046E6E;
  border-radius: 6px;
  transition: width 1s ease-in-out;
}

#score-text, #recommendation {
  font-size: 1.1em;
  margin: 10px 0;
}

.cta-button {
  display: inline-block;
  margin-top: 20px;
  background-color: #C2A990;
  color: white !important;
  text-decoration: none !important;
  padding: 12px 20px;
  font-size: 1em;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #d2bca6; /* minimal heller als #C2A990 */
}
