/* Genel Ayarlar */
body {
  text-align: center;
   margin: 0;
  padding: 50;
  background: radial-gradient(circle, #ffffff, #f0f0f0, #d0d0d0);		
  font-family: 'poppins', 'Arial Narrow', Arial, sans-serif !important;  
}

/* Test Alanı */
#quiz-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Nota Görselleri */
#note-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

/* Nota Butonları */
.choice-btn {
  width: 60px;
  height: 60px;
  margin: 8px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: bold !important;
  transition: all 0.3s ease;
}

.choice-btn:hover {
  background: linear-gradient(135deg, #007bff, #6610f2);
  color: #fff !important;
  transform: scale(1.1);
  font-weight: bold;
  
}

.choice-btn.selected {
  background: #ffc107;
  color: #fff;
}

.choice-btn.correct {
  background: #28a745 !important;
  color: #fff;
}

.choice-btn.incorrect {
  background: #dc3545 !important;
  color: #fff;
}

/* Progress Bar */
.progress-bar {
  height: 25px;
}

/* Testi Başlat Butonu */
#start-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;

}


/* Sonraki Soru Butonu */
#next-button {
  margin: 20px auto;
  font-size: 16px;
  padding: 8px 20px;
  border-radius: 25px;
  display: block;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
  .choice-btn {
    width: 50px;
    height: 50px;
    font-size: 12px;
  }

  #start-button,
  #next-button {
    font-size: 14px;
    padding: 6px 16px;
  }
}

.btn-light{
  border: 1px solid #333 !important;
}