html,
body,
div,
p,
lu,
li {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html,
body,
.full-screen {
  height: 100%;
  width: 100%;
  max-height: 100%;
}
body {
  background-color: lightgray;
  padding: 10px;
}
form label {
  display: block;
}
form label input {
  margin: 5px;
}
.rolls table {
  padding: 0;
  margin-bottom: 10px;
  border-spacing: 0;
  border-collapse: collapse;
  border: 1px solid black;
}
.rolls table label {
  display: block;
}
.rolls table td,
.rolls table th {
  border: 1px solid black;
  padding: 5px;
}
.rolls table .header {
  font-weight: bold;
  border: 1px solid black;
}
.rolls table th.row {
  text-align: left;
}
.rolls table .roll-stats {
  display: grid;
  grid-template-columns: 80px 1fr;
}
.rolls table .roll-stats .value {
  font-weight: bold;
}
.rolls .ranges {
  margin-bottom: 5px;
}
.rolls .ranges label,
.rolls .ranges input {
  display: inline-block;
}
.rolls .ranges label {
  margin-right: 5px;
}
.rolls .chart {
  width: 60%;
  margin-bottom: 5px;
}
