body {
font-family: 'Montserrat', sans-serif;
}

.quiz-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.progress {
  font-weight: bold;
  color: #1d3557;
}

.score {
  font-weight: bold;
  color: #1d3557;
}
.quiz-container{
  display: none;
  max-width: 900px;
  margin: 0 auto;
  padding: 1rem;
}

.quiz-container .timer{
  font-weight: bold;
  color: red;
  display: inline-block;
  margin-left: auto;
}

.quiz-container h1 {
  text-align: center;
}

.quiz-container h2.question{
  font-size: 20px;
  background: white;
  padding: 1rem;
  border-radius: 10px;
  font-weight: normal;
  text-align: center;
  line-height: 1.6;
}

 .quiz-container .choices{
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
 }

 .quiz-container .choice{
  border: 1px solid black;
  padding: 1rem;
  font-size: : 18px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  background: #1d3557; 
  color: white;
  margin: 10px 0;
  border-radius: 12px;
  text-align: left;
  display: block;
 }

 .choice:hover{
  background: #222;
  color:#fff;
 }

 .quiz-container button{
  padding: 0.5rem 1rem;
  cursor: pointer; 
 }

 .disable {
  pointer-events: none;
 }

 .choice.correct {
  background: #0d700d;
  color: white;
}

.choice.incorrect {
  background: #75121f;
  color: white;
}

.quiz-container .next-button,
.quiz-result .retake-button {
  background: #222;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 1rem;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 3px;
  cursor: pointer;
  width: fit-content;
}

.quiz-result {
  display: none;
  flex-direction: column;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  font-family: "Montserrat", sans-serif;
  padding: 1rem;
}

.quiz-result .question-container {
  padding: 1rem;
  border: 1px solid #eee;
  background-color: #0d700d;
  color:#fff;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quiz-result .question-container.incorrect {
  background: #75121f;
  border-radius: 12px;
  color: #fff;
}

.question-number {
  font-size: 16px;
  color: #1d3557;  
  font-weight: bold;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

@media (max-width: 700px) {
  .quiz-container .choices {
    grid-template-columns: 1fr;
  }
}

.start-button-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Montserrat", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.start-button-container h2 {
  font-size: 40px;
  margin: 0;
}

.start-button-container .start-button {
  background: #1d3557;
  color: #fff;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid #fff;
  font-size: 24px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: bold;
  margin: 10px 0;
  width: 100%;
  text-align: left;
}

.kaizen-logo {
  width: 150px;
  height: 150px;
  object-fit: contain;     
  margin: 0 auto 30px;    
}