.form-wsp-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.form-wsp-form {
  position: relative; /* ✅ Esto permite posicionar elementos dentro */
  background-color: #1848e7;
  padding: 20px;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: white;
  border: solid 2px #fff;
}

.form-wsp-label {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
  color: white;
  text-align: center;
}

.form-wsp-input {
  padding: 10px;
  border: none;
  border-radius: 6px;
  background-color: #f1772e;
  color: white;
  font-size: 16px;
}

.form-wsp-button {
  background-color: #f1772e;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 10px;
  font-size: 16px;
  cursor: pointer;
}

.form-wsp-button:hover {
  background-color: #e06c26;
}

.form-wsp-cerrar {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 22px;
  color: white;
  cursor: pointer;
  z-index: 10;
}

.form-wsp-cerrar:hover {
  color: #ccc;
}

/* Pop up confirm*/

.popup-confirm {
  display: none;
  position: fixed;  
  font-family: 'Lora', serif;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 4000;
}

.popup-confirm.mostrar {
  display: flex;
}

.popup-contenido {
  background-color: #0072df;
  color: white;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

.popup-contenido h2 {
  margin-top: 0;
}

.botones-confirm {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.botones-confirm button {
  padding: 10px 20px;
  margin: 0 10px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

.aceptar-confirm {
  background-color: #00c853;
  color: white;
}

.cancelar-confirm {
  background-color: #d32f2f;
  color: white;
}  