/* Estilos para el modal */
.modalError {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4);
}

.modalError-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 250px;
  height: 250px;
  border-radius: 10px;
  text-align: center;
}

.modalError .icono {
  font-size: 120px;
  margin-top: 40px;
  margin-bottom: 20px;
}
.modalError .mensaje {
    font-size: 20px;
    font-weight: bold;
}

/* Estilos para el icono de correcto y error */
.correcto { color: green;}
.error { color: red; }
