#message-editor {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
#message-editor.visible {
  display: flex;
  justify-content: center;
  align-items: center;
}
#message-editor input, 
#message-editor textarea {
  margin: 5px 0;
}
#message-editor textarea {
  min-height: 150px;
}
#message-editor form {
  padding: 20px 30px;
  width: 600px;
  max-width: 90%;
  background-color: #d9964d;
  border: 2px solid white;
  display: flex;
  flex-direction: column;
}
#message-editor #message-title {
  color: white;
}
#message-editor #message-buttons {
  text-align: center;
}
