@charset "utf-8";
#modal-overlay {
  z-index: 1000;
  border: none;
  margin: 0px;
  padding: 0px;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background-color: rgb(0, 0, 0);
  opacity: 0.6;
  cursor: wait;
  position: fixed;
  display: none;
}
#modal-content {
  z-index: 9999;
  position: fixed;
  padding: 20px;
  margin: 0px;
  width: 30%; /* Cambio del ancho a 30% */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #000; /* Cambio del color de texto a negro */
  border: none;
  background-color: #fff;
  cursor: wait;
  border-radius: 5px;
  display: none;
}
/* Estilos del modal de éxito */
#modal-success {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 9999;
}

#modal-success-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
}

#modal-success-content p {
  margin-bottom: 20px;
}



#modal-content .loading-text {
  display: block;
  margin-top: 10px;
   color: #000; /

}

.btn-light {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:hover {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
}
.btn-light:focus, .btn-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}
