@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");

body {
  background-color: burlywood;
  font-family: "IBM Plex Mono", monospace;
  font-size: 16pt;
}

p {
  margin-block-start: 0.5rem;
  margin-block-end: 0.5rem;
}

.flash {
  color: red;
}

.postlist {
  list-style-type: none;
  padding-inline-start: 0;
}

.postlist li {
  /* font-weight: bold; */
  padding-block-end: 10px;
}

.review-body {
  padding-block-start: 5px;
  padding-block-end: 5px;
  display: none;
}

.review-toggle {
  min-width: 6rem;
  text-decoration: underline;
  cursor: pointer;
}

.postform {
  font-size: 16pt;
  font-family: "IBM Plex Mono", monospace;
  width: 100%;
  box-sizing: border-box;
}

@media screen and (min-width: 600px) {
  .postform {
    width: auto;
  }
}

.radioform {
  display: inline-block;
  width: auto;
  font-family: "Courier New", Courier, monospace;
  list-style-type: none;
  padding-inline-start: 0;
  margin-block-start: 5px;
  margin-block-end: 0;
}

.radioform li {
  display: inline;
  margin: 0;
  padding: 0;
}

.radioform input[type="radio"] {
  display: none;
}

.radioform label {
  padding: 5px;
  cursor: pointer;
  -webkit-appearance: button;
  /* WebKit */
  -moz-appearance: button;
  /* Mozilla */
  -o-appearance: button;
  /* Opera */
  -ms-appearance: button;
  /* Internet Explorer */
  appearance: button;
  /* CSS3 */
}

.radioform label:hover {
  background: #ddd;
}

.radioform input[type="radio"]:checked + label {
  background: tomato;
}
