body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #eaf6ff; /* Light blue background */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

header {
  text-align: center;
  margin-bottom: 20px;
}

h1 {
  color: #0073e6;
}

.progress-container {
  margin-bottom: 20px;
  height: 20px;
  background-color: #f0f0f0;
  border-radius: 5px;
  overflow: hidden;
}

.progress-bar {
  width: 0;
  height: 100%;
  background-color: #0073e6;
  transition: width 0.3s ease;
}

#question-container {
  margin-bottom: 20px;
}

#options {
  list-style-type: none;
  padding: 0;
}

#options li {
  margin-bottom: 10px;
}

input[type="radio"] {
  margin-right: 10px;
}

#submit-btn, #next-btn {
  background-color: #0073e6;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  display: inline-block;
  margin-top: 20px;
}

#submit-btn:hover, #next-btn:hover {
  background-color: #005aad;
}

#answer-container {
  display: none;
  margin-top: 20px;
}

#answer {
  font-weight: bold;
  color: #0073e6;
}

#rationale {
  color: #444;
}

/* Move the next button to the right side */
#next-btn {
  float: right;
}
#new-test-btn {
  background-color: #0073e6;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  display: block;
  margin: 0 auto; /* Center the button */
  margin-top: 20px; /* Add some top margin */
}
button, input, p {
  font-size: 16px; /* Adjust the font size as needed */
}

#new-test-btn:hover {
  background-color: #005aad;
}
#next-btn {
  display: none; /* Initially hide the next button */
}
#summary-container {
  background-color: #f0f0f0;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  margin-top: 20px;
}

.summary-content {
  margin-bottom: 20px;
}

.progress-circle {
  width: 100px;
  height: 100px;
  background-color: #e6e6e6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.progress-circle span {
  font-size: 24px;
  font-weight: bold;
}

#restart-btn {
  background-color: #0073e6;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#restart-btn:hover, #end-test-btn:hover {
  background-color: #005aad;
}

#end-test-btn {
  background-color: #5a8ab9;
  display: block;
  margin: 0 auto;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.progress-ring-container {
  margin: 0 auto;
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.progress-ring {
  transform-origin: center;
}

.progress-ring-circle {
  stroke-dasharray: 320; /* Circumference of the circle */
  stroke-dashoffset: 320; /* Hide the progress initially */
  transition: stroke-dashoffset .1s ease-out; /* Smooth transition */
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}


.progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
}


.progress-ring-background {
  stroke-dasharray: 327;
  stroke-dashoffset: 0;
}

.progress-ring-circle, .progress-ring-background {
  fill: transparent;
}

.footer-links a {
  margin: 0 10px;
  text-decoration: none;
  color: #fff;
}

.footer-links a:hover {
  color: #eee;
}

.content {
  flex: 1;
}

.footer {
  margin-top: 50px;
  background-color: #000;
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
}
