* {
    font-family: Arial, sans-serif;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

footer {
    position: absolute;
    padding-left:5%;
    padding-right:5%;
    padding-bottom:5px;
    padding-top:5px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background-color: #ebecfc;
    text-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.2);
    color: gray;
    font-size: 12px;
    text-decoration: none;
    display: grid;
    place-items: center;     /* Centers both axes at once */
}

.page-container {
  position: relative;
  min-height: 100%; /* Forces container to span full viewport height */
}

.content-wrap {
  padding-bottom: 75px; /* Must strictly equal or exceed the footer's height */
}

h1 {
    color: darkblue;
}

h2 {
    color:darkblue;
}

body {
    margin: 0px
}

button {
    font-size: 20px;
    background-color: #363ed1;
    border-color: #2e3175;
    color: #ffffff;
    border-radius: 5px;
    padding: 5px;
}

button:hover {
    background-color: #2e3175;
}

.remove-button {
    background-color: #cc0000;
    border-color: #800000;
}

.remove-button:hover {
    background-color: #800000;
}

th, td {
  padding: 3px;
  padding-right: 7px;
}

input {
  color: #333;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  padding: 8px;
  margin: 5px;
  border-radius: 4px;
  font-size: 14px;
}

select {
  color: #333;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  padding: 8px;
  margin: 10px;
  border-radius: 4px;
  font-size: 16px;
}

fieldset {
  border: 1px solid #ccc;
  border-radius: 4px;
  margin: 10px;
}

.helptext {
    color: #595959;
    font-size: 14px;
}

.dynamic-input-label {
    color: darkblue;
    font-style: bold;
    font-size: 16px;
}

label {
    font-style: bold;
    font-size: 20px;
}

.nav-bar {
    position: sticky;
    top: 0;
    padding-left:5%;
    padding-right:5%;
    padding-bottom:5px;
    padding-top:5px;
    margin: 0px;
    background-color: #ebecfc;
    border-bottom-style: solid;
    border-color: #1b3c7e;
    border-width: 3px;
    text-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.2);
}

.nav-box {
    display: inline-block
    padding-left:10px;
    padding-right:10px;
}

.nav-link {
    color: #990000;
    font-weight: bold;
    font-size: 20px;
    text-decoration: none;
}

.footer-link {

}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ebecfc;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  font-size: 20px;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: #363ed1;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

a:link {
    color: #363ed1
}

a:visited {
    color: #363ed1
}

a:hover {
    color: #b3071b
}

a:active {
    color: #b3071b
}

.container {
  display: flex;
  flex-wrap: wrap;
  width: 75%;
}

.info-block {
    background-color: #ebecfc;
    border: 1px solid #363ed1;
    border-radius: 5px;
    padding: 10px;
}

.info-column {
    padding-left: 20px;
    padding-right:20px;
}

.input-amount-container {
  width: 90px;
  margin: 5px;
  padding: 10px;
  background-color: #ebecfc;
  border: 1px solid #363ed1;
  border-radius: 5px;
}

.input-amount {
    height: 35px;
    width: 40px;
}

.input-height {
  height: 25px;
}

.sheet-input-width {
  width: 50px;
}

.errorlist {
  background-color: #ffe6e6;
  border: 1px solid #b3071b;
  border-radius: 5px;
  padding: 10px;
  padding-left:30px;
  margin-right: 20px;
}

.red-text {
    color: #b3071b;
}

.blue-text {
    color:darkblue;
}