#spot-message {
  background-color: #d8e8ff;
  color: #000;
  text-align: center;
  font-weight: bold;
  padding: 10px;
  border-radius: 5px;
  font-size: 12px;
}

#quiz-result a {
  display: flex !important;
}

#solicitud-numero {
  font-size: 1.2rem;
  color: #007bff; /* Color azul para resaltar */
  font-weight: bold;
  background-color: #e6e7e7;
  padding: 0px 10px;
  border-radius: 5px;
  display: inline-block;
  margin-top: 10px;
}

.cta-btn {
  font-size: 1.2rem;
  font-weight: bold;
}

.quiz-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  background-color: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.quiz-question {
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: opacity 0.3s ease-in-out;
}

.quiz-buttons {
  transition: opacity 0.3s ease-in-out;
}

.quiz-buttons.hidden {
  opacity: 0;
}

.quiz-buttons button {
  display: block;
  width: 100%;
  margin: 10px 0;
  font-weight: bold;
  padding: 12px;
  font-size: 1rem;
}

.progress-bar {
  height: 20px;
}

.loading-spinner {
  margin: 20px auto;
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid #007bff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.icon-animate {
  animation: bounce 1s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.validation-message {
  font-weight: bold;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  flex: 1;
}

footer {
  background-color: #343a40;
  color: white;
  padding: 20px;
  text-align: center;
}

@media (max-width: 768px) {
  h1.fw-bold.text-black {
    font-size: 26px;
  }

  h1.fw-bold.text-black {
    margin-top: 2px;
  }
}

@media (max-width: 768px) {
  #quiz-progress {
    min-width: 7%;
  }
}
