/* Estilos adicionales para la integración con Redsys */

.cargando-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.cargando-spinner {
  width: 60px;
  height: 60px;
  border: 6px solid #f3f3f3;
  border-top: 6px solid #f06292;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

.cargando-mensaje {
  color: white;
  font-size: 18px;
  text-align: center;
  max-width: 80%;
  font-weight: 500;
}

.cargando-spinner-container {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Estilos para la página de procesamiento de pago */
.musanafest-simulacion-pago {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.musanafest-simulacion-pago h2 {
  color: #333;
  margin-bottom: 15px;
  font-size: 24px;
}

.detalles-pago {
  background-color: white;
  border: 1px solid #eee;
  border-radius: 5px;
  padding: 20px;
  margin: 20px 0;
  text-align: left;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

.detalles-pago p {
  margin: 10px 0;
  font-size: 16px;
}

/* Estilos responsivos */
@media (max-width: 768px) {
  .musanafest-simulacion-pago {
    padding: 15px;
  }

  .cargando-mensaje {
    font-size: 16px;
  }
}