/* General */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #121212;
  color: white;
}

/* Choice Styling */
.choice-container {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
  width: 100%;
  font-size: 1.3rem;
  border: 0.1rem solid rgba(86, 165, 235, 0.25);
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}
.choice-container:hover {
  cursor: pointer;
  box-shadow: 0 0.4rem 1.4rem 0 rgba(86, 185, 235, 0.5);
  transform: translateY(-2px);
}
.choice-prefix {
  padding: 1rem 1.5rem;
  background-color: #56a5eb;
  color: white;
  font-weight: bold;
}
.choice-text {
  padding: 1.2rem;
  width: 100%;
  color: #e5e7eb;
}
.correct {
  background-color: #22c55e !important;
  color: white;
}
.incorrect {
  background-color: #ef4444 !important;
  color: white;
}

/* HUD */
.hud-prefix {
  font-size: 1.25rem;
  color: #e5e7eb;
}
.hud-main-text {
  font-size: 2rem;
  font-weight: bold;
  color: white;
}
#progressBar {
  width: 14rem;
  height: 1.5rem;
  border: 0.2rem solid #56a5eb;
  margin-top: 0.75rem;
  border-radius: 0.5rem;
  overflow: hidden;
}
#progress-bar-full {
  height: 100%;
  background-color: #56a5eb;
  width: 0%;
  transition: width 0.3s ease-in-out;
}

/* Question */
#question {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

/* Loader */
#loader {
  border: 1.2rem solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  border-top: 1.2rem solid #56a5eb;
  width: 8rem;
  height: 8rem;
  animation: spin 1.5s linear infinite;
  margin: auto;
}
.load-div {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 6rem 0;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.hidden { display: none; }
