body {
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

a {
    color: cornflowerblue;
    text-decoration: none;
}

input[type=text], input[type=password], input[type=email], input[type=tel], input[type=number] {
    font-size: x-large;
    border-radius: 5px;
    padding: 5px;
    background: #f8fbda;
    border: 1px solid #6b7775;
    color: #434343;
}

input[type=date], input[type=datetime-local], input[type=month] {
    font-size: x-large;
    border-radius: 5px;
    padding: 5px;
    color: #434343;
    background-color: lightgray;
    border: 1px solid #6b7775;
}

input[list=state], input[list=payments_category] {
    font-size: x-large;
    border-radius: 5px;
    padding: 5px;
    color: #434343;
    background-color: #E6E6E6;
    border: 1px solid #6b7775;
}

textarea {
    font-size: large;
}

select {
    font-size: large;
    border-radius: 5px;
    padding: 5px;
    color: #434343;
    background-color: #e5e5e5;
    border: 1px solid #6b7775;
    height: 35px;
}
select[multiple] {
    min-height: 150px;
    min-width: 300px;
}

select[multiple] option:checked {
    color: white;
    background: darkgreen linear-gradient(0deg, green 0%, green 100%);
    text-decoration: white underline;
}

.content {
    max-width: 1230px;
    margin: 0 auto 0 auto;
    padding: 10px;
}

.button {
    padding: 5px 25px;
    border-radius: 5px;
    font-size: larger;
}
.button:hover {
    cursor: pointer;
}

.blue {
    color: white;
    background: royalblue;
}
.blue:hover {
    background-color: #2a4491;
}

.orange {
    color: white;
    background-color: orangered;
}
.orange:hover {
    background-color: #862400;
}

.red {
    color: white;
    background-color: red;
}
.red:hover {
    color: white;
    background-color: darkred;
}

.header_row {
    width: 100%;
    color: white;
    background-color: dimgray;
    padding: 2px 10px;
    font-size: large;
}
.required {
    color: red;
}
.subtitle {
    font-size: small;
}