.message-box {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  font-family: "Courier New", Courier, monospace;
  font-weight: bold;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 250px;
  max-width: 400px;  /* Set a max-width to control box size */
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Ensure long words break */
  z-index: 999;
}

.hidden {
  display: none;
}

.message-box.info {
  background-color: #d5dae9;
  color: #05010b;
}

.message-box.warn {
  background-color: #d5dae9;
  color: #05010b;
}

.message-box.error {
  background-color: #d5dae9;
  color: #05010b;
}

#messageBoxOkButton {
  margin-left: 20px;
  padding: 5px 10px;
  background-color: #1253eca5;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
