body {
  margin:0; font-family:'Segoe UI', sans-serif;
  background: linear-gradient(to bottom, #27190f, #203a43, #2c5364);
  color:#fff;
}
.quiz-setup {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 20px;
  gap: 10px;
  background: #f2f2f2;
  border-radius: 12px;
  width: 80%;
  margin: auto;
  color: #522608;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.candidate-form {
  width: 100%;
  gap: 20px;
  background: linear-gradient(135deg, #2b2b2b, #1c1c1c);
  padding: 20px;
  border-radius: 10px;

  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.candidate-form label {
  flex: 1 1 200px;
  color: #fff;
  font-weight: 500;
  display: flex;
  flex-direction: column;
}

.candidate-form input,
.candidate-form select {
  margin-top: 6px;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #666;
  background-color: #333;
  color: #fff;
  font-size: 16px;
  transition: border-color 0.3s;
}

.candidate-form input:focus,
.candidate-form select:focus {
  border-color: #ffcc00;
  outline: none;
}

.quiz-setup label {
  display: block;
  margin-bottom: 10px;
}

.quiz-setup select, .quiz-setup button {
  width: 100%;
  padding: 8px;
  margin-top: 4px;
  font-size: 16px;
  border-radius: 6px;
}

#startBtn:disabled {
  background-color: #8d8b97;
  color: gold;
  cursor: not-allowed;
  width: 150px;
  height: 40px;
  margin-top: 15px;
  cursor: pointer;
}
#startBtn:not(:disabled) {
  background-color: #ffcc00;
  color: #0011ff; /* Light gold */
  cursor: pointer;
}
/* === KBV Rules Section Styles === */
.rules-section {
  width: 80%;
  background-color: #fff;
  color: #222;
  padding: 30px;
  border-radius: 12px;
  margin: 40px auto;
  box-shadow: 0 4px 6px rgb(194, 15, 15);
  line-height: 1.6;
}
.rules-section h2 {
  color: #007bff;
  margin-bottom: 20px;
}
.rules-section ul {
  padding-left: 20px;
}
.rules-section ul li {
  margin-bottom: 15px;
}
.rules-section ul ul {
  margin-top: 10px;
  padding-left: 20px;
  list-style-type: circle;
}