#modal::backdrop {
  background: rgba(0, 0, 0, 0.6);
}

#modal {
  background: var(--light_background);
  padding: 15px;
  width: calc(100% - 30px);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.4);
  border-width: 1px;
  border-style: solid;
  border-radius: 5px;
  max-width: 600px;
}

#modalTitleWrapper {
  overflow: hidden;
  display: inline-block;
}

#modalTitle {
  font-size: 13pt;
}

#modalBody>* {
  margin: 0;
}

#modalCloseButton {
  width: 30px;
  height: 30px;
  padding: 0;
  text-align: center;
  font-size: 20pt;
}

#modalCloseButton::before {
  content: "\00d7";
}
