@import "tree.css";

label {
    color: steelblue;
}
label.required:after {
    content:" *";
    color: red;
}
.jumbotron {
    background-color: lightsteelblue;
}
button[type="submit"] {
    background-color: steelblue;
}
input[type=text]:read-only {
    cursor: not-allowed;
}

select[multiple] {
    overflow-y: auto;
}

div.footer-below {
    /* 85 = 65 min-height footer + 20 margin-top*/
    min-height: calc(100vh - 85px);
}
footer {
    margin-top: 20px;
    min-height: 65px;
    background-color: #002e5b;
}
footer .copyright {
    color: #8da2a6;
    padding: 16px;
}