/* Modal New User (parametrizado) */
.modalNewUser {
  display: none; /* Oculto por default */
  position: fixed; /* en una sola posición */
  z-index: 1; /* desde arriba */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* activa el scroll se lo necesita */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modalNewUser-content {
  background-color: #fefefe;
  margin: 13% auto; /* 15% o 22% desde arriba y centrado */
  padding: 20px;
  border: 1px solid #888;
  width: 50%; /* dependiendo del tamaño de la pantalla */
  border-radius: 10px;
}

/* Cierra ventana Button */
.modalNewUserClose {
  border: none;
  outline: none;
  color: #aaa;
  float: right;
  font-size: 25px;
  font-weight: bold;
}

.modalNewUserClose:hover,
.modalNewUserClose:focus {
  border: none;
  outline: none;
  color: red;
  text-decoration: none;
  cursor: pointer;
}

#modalNewUserTexto {
  color: black;
  font-size: 16px;
}



/* Modal Edit User (parametrizado) */
.modalEditUser {
  display: none; /* Oculto por default */
  position: fixed; /* en una sola posición */
  z-index: 1; /* desde arriba */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* activa el scroll se lo necesita */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modalEditUser-content {
  background-color: #fefefe;
  margin: 13% auto; /* 15% o 22% desde arriba y centrado */
  padding: 20px;
  border: 1px solid #888;
  width: 50%; /* dependiendo del tamaño de la pantalla */
  border-radius: 10px;
}

/* Cierra ventana Button */
.modalEditUserClose {
  border: none;
  outline: none;
  color: #aaa;
  float: right;
  font-size: 25px;
  font-weight: bold;
}

.modalEditUserClose:hover,
.modalEditUserClose:focus {
  border: none;
  outline: none;
  color: red;
  text-decoration: none;
  cursor: pointer;
}

#modalEditUserTexto {
  color: black;
  font-size: 16px;
}



/* Modal Borra User (parametrizado) */
.modalBorraUser {
  display: none; /* Oculto por default */
  position: fixed; /* en una sola posición */
  z-index: 1; /* desde arriba */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* activa el scroll se lo necesita */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modalBorraUser-content {
  background-color: #fefefe;
  margin: 13% auto; /* 15% o 22% desde arriba y centrado */
  padding: 20px;
  border: 1px solid #888;
  width: 50%; /* dependiendo del tamaño de la pantalla */
  border-radius: 10px;
}

/* Cierra ventana Button */
.modalBorraUserClose {
  border: none;
  outline: none;
  color: #aaa;
  float: right;
  font-size: 25px;
  font-weight: bold;
}

.modalBorraUserClose:hover,
.modalBorraUserClose:focus {
  border: none;
  outline: none;
  color: red;
  text-decoration: none;
  cursor: pointer;
}

#modalBorraUserTexto {
  color: black;
  font-size: 16px;
}
