html {
  font-size: 20px;
  position: relative;
  min-height: 100%;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  color: #0D090A;
}

body {
  padding: .5em;
  margin: .5em;
  background-color: #eff0f1;
}

.divider {
  font-size: 16px;
  color: #521945;
  text-transform: uppercase;
  font-weight: 200;
  padding-bottom: 5px;
  border-bottom: 1px solid #c49bce;
  margin-top: 2em;
}

.calloutBox {
  width: 80%;
  margin: 10px auto;
  padding: 10px;
  font-style: italic;
  background-color: #fff;
  border: 1px solid #dddddd;
  color: #521945;
}

.errorCalloutBox {
  width: 70%;
  margin: 0 auto 10px auto;
  padding: 10px;
  font-weight: bold;
  background-color: #fff;
  border: 1px solid #dddddd;
  color: #f00;
}

/* type */

h1 {
  font-size: 30px;
  color: #521945;
  text-transform: uppercase;
  font-weight: 200;
}

h2 {
  font-size: 16px;
  color: #521945;
  text-transform: uppercase;
  font-weight: 200;
}

a {
  color: #912F56;
  text-decoration: dotted underline;
}

/* controls */

label {
  font-weight: bold;
  color: #521945;
}

input[type='text'] {
  padding: 8px;
  font-size: 14px;
}

button {
  font-size: 16px;
  background-color: #521945;
  color: #fff;
  padding: 0.6em 0.8em;
  border: none;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

button:disabled {
  background-color: #e4abc2;
  color: #521945;  
  cursor: not-allowed;  
}

button.secondary {
  padding: .5em .7em;
  font-size: 14px;
}

select {
  border: 1px solid dimgray;
  padding: 8px;
  font-size: 14px;
}

textarea {
  font-size: 14pt;
}

/* tables */

table.simpleTable {
  border-collapse: collapse;
  margin: 10px 0;
}

table.simpleTable > thead > tr > th {
  padding: 8px;
  text-align: left;
  background-color: #521945;
  color: #ffffff;  
}

table.simpleTable > thead > tr > th:first-child {
  border-top-left-radius: 5px;
}

table.simpleTable > thead > tr > th:last-child {
  border-top-right-radius: 5px;
}

table.simpleTable > tbody > tr > td {
  padding: 8px;
  border-bottom: 1px solid #d3c4d6;
  background-color: #fff;
}

td.vip {
  font-weight: bold;
  color: #912F56;
}

td.pastTask {
  font-style: italic;
  color: #999999;
}