#saq-quiz-container {
  max-width: 600px;
  margin: 30px auto;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  color: #1C2A54;
  text-align: center;
}

#saq-progress-bar {
  height: 10px;
  background: #eee;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}
#saq-progress-fill {
  height: 100%;
  background: #1C2A54;
  width: 0%;
  transition: width 0.3s;
}

#saq-options button {
  display: block;
  width: 100%;
  margin: 10px 0;
  background: white;
  color: #1C2A54;
  border: 0.5px solid #1C2A54;
  padding: 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}
#saq-options button:hover {
  background: #142043;
  color: white;
}

#saq-result-screen img {
  max-width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
}

#saq-restart {
  margin-top: 20px;
  background: #1C2A54;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
}

#saq-question-screen {
  opacity: 1;
  transition: opacity 1s ease;
}

#saq-question-screen.fade-out {
  opacity: 0;
}
#saq-loading-screen {
  text-align: center;
  font-size: 1.2rem;
  padding: 20px;
  color: #1C2A54;
}

.saq-loader {
  margin: 20px auto;
  width: 40px;
  height: 40px;
  border: 4px solid #1C2A54;
  border-top: 4px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

