.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8); /* Fondo semitransparente */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.modal-container {
  width: 100%;
  height: 100%;
  display: flex;
  > .modal-content-out {
    width: 100%;
  }
  > .modal-content {
    max-width: 400px;
    background-color: #030316;
    padding: 32px;
    /* -webkit-box-shadow: 0px -1px 5px 0px rgba(190, 149, 107, 1);
    -moz-box-shadow: 0px -1px 5px 0px rgba(190, 149, 107, 1);
    box-shadow: 0px -1px 5px 0px rgba(190, 149, 107, 1); */
  }
  > .modal-content.delete-object {
    -webkit-box-shadow: 0px -1px 5px 0px #dc3545;
    -moz-box-shadow: 0px -1px 5px 0px #dc3545;
    box-shadow: 0px -1px 5px 0px #dc3545;
  }
}

.modal-container-error {
  width: 100%;
  height: 100%;
  display: flex;
  > .modal-content-out {
    width: 100%;
  }
  > .modal-content {
    max-width: 400px;
    background-color: #e6cccc;
    padding: 32px;
    -webkit-box-shadow: -1px 2px 5px 0px rgba(190, 149, 107, 1);
    -moz-box-shadow: -1px 2px 5px 0px rgba(190, 149, 107, 1);
    box-shadow: -1px 2px 5px 0px rgba(190, 149, 107, 1);
  }
}
.modal-content {
  overflow: auto;
}

button {
  /* Estilos para el botón de cerrar el modal */
  cursor: pointer;
  background: #3490dc;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 4px;
}

.modal-container.confirm {
  height: auto;
  justify-content: center;
  align-items: center;
}
.custom-list {
  color: #9a1919;
  list-style-type: none;
  padding-left: 1.5em;
}

.custom-list li {
  border-bottom: 1px solid #9a1919;
}
