body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', 'Roboto', sans-serif;
  background: linear-gradient(135deg, #FF6B35 0%, #D32F2F 50%, #FF8F00 100%);
  color: #333;
  min-height: 100vh;
}

/* Header ocupando todo el ancho */
.exam-header {
  width: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  backdrop-filter: blur(15px);
  padding: 2rem;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

#questions-container{
  font-size: 15pt;
}

.exam-header h1 {
  margin: 0;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.exam-header h2 {
  margin: 0.5rem 0;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
}

/* Contenedor de preguntas con ancho limitado */
.exam-container {
  max-width: 900px;
  margin: 20px auto;
  padding: 0;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  overflow: hidden;
}

/* Botón "Terminar Intento" */
.finish-button {
  background: linear-gradient(135deg, #FF6B35, #D32F2F);
  color: #fff;
  padding: 1rem 2rem;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  margin: 2rem;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.finish-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

/* Estilos generales de pregunta */
.question {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  font-family: 'Inter', sans-serif;
  margin: 2rem;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.question-text {
  margin-bottom: 1.5rem;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.6;
}
