/* Styles for the Overlag, the box itself and the close X */

#idOverlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: rgba(255, 255, 255, 0.7); */
  z-index: 9999;
  display: none; /* to start */
}

/* This is the main AlertBox */
.AlertBox,
.AlertBoxL {
  /* No scroll bars 9/11/2024 */
  overflow: hidden;
  overflow-y: scroll;

  margin: auto;
  border-style: solid;
  border-color: black;
  width: 400px;
  vertical-align: middle;
  top: 30%;
  /* transform: translate(0, -42%); */
  /* left: 40%;
  top: 40%; */
  color: black;
  background-color: white;
  /* margin-left: -200px; half of width */
  border-radius: 10px;
  padding: 10px;
  position: relative;
  max-height: 500px;
}
.AlertBox {
  text-align: center;
}

.AlertboxL {
  text-align: left;
}

.AlertBoxClose {
  padding: 5px;
  position: absolute;
  right: 10px;
  top: -13px !important;
  height: 10px;
  font-size: 36px;
  font-weight: bold;
  color: lightgray;
  vertical-align: middle;
}
.AlertBoxClose:hover {
  cursor: pointer;
  color: rgb(136, 255, 0);
  text-decoration: none; /* no underline */
}
