/* body {
  font-family: Arial, sans-serif;
  background: #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
} */

.answer-review-list li {
    margin-bottom: 12px;
    font-size: 1.1em;
}

.quiz-logo-bar {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
}

.quiz-logo {
  width: 160px;
  margin: 20px 0 10px 0;
}

.quiz-green-bar {
  width: 100%;
  height: 8px;
  background-color: #2e8b57;
}

.quiz-container {
  width: 700px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  overflow: hidden;
  position: relative;
}

.tile {
  display: none;
  padding: 20px;
  text-align: center;
}

.tile.active {
  display: block;
  margin: 6px 0;
  padding: 10px;
}

.tile img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.question {
  font-size: 18px;
  margin-bottom: 15px;
  margin-left: 20px;
  margin-right: 20px;
}

.options label {
  display: block;
  background: #f9f9f9;
  margin: 6px 0;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  border: 1px solid #ddd;
  transition: background 0.3s;
}

.options input {
  margin-right: 10px;
}

.options label:hover {
  background: #e8f0fe;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #007BFF;
  border: none;
  color: #fff;
  padding: 12px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
}

#prevBtn { left: 10px; }
#nextBtn { right: 10px; }

.submit-btn {
  background: #28a745;
  border: none;
  color: white;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}

.score-div {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    text-align: center;
}

.quiz-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  background: #eef2f7;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  width: 700px;
  margin: 20px auto;
}

.quiz-header {
  text-align: center;
  margin-bottom: 20px;
}

.quiz-header h2 {
  font-size: 26px;
  color: #333;
  margin: 0;
}

.quiz-navigation {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 15px;
  position: relative;
}

.nav-btn {
  background: #007BFF;
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  transition: background 0.2s;
}

.nav-btn:hover {
  background: #0056b3;
}