* {
    margin:0;
    padding:0;
}
body {
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
    background: url(../images/bgPoints.svg) center top repeat-y;
    background-size: cover;
    color: #535353;
    line-height: 30px;
    font-weight: 300;
}
header {
    border-bottom: 1px solid #bbb;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
label {
    display: inline-block;
    margin-bottom: 0.5em;
}
fieldset {
    padding: 10px;
    border:1px solid #333;
    margin-bottom: 10px;
}
legend {
    color:#FFF;
    letter-spacing: 1px;
    background-color: rgba(124, 189, 114, 1);
    border:1px solid #333;
    padding: 0.2em 10px;
}
input {
    display: block;    
    border: 1px solid #000;
    margin-bottom: 0.2em;
    font-size: 1.5em;
    line-height: 1.5em;
    padding: 0.2em 10px;
}
input[type=submit] {
    font-size: 1em;
}
h1, h2, h3, h4 {
    font-family: 'Roboto Slab', serif;
}
h1 {
    margin-bottom: 10px;
}
h2 {
    margin-top: 0.3em;
    margin-bottom: 0.8em;
}
h3 {
    margin-bottom: 0.5em;
}
ul {
    padding-left: 1em;
}
button {
   
 padding: 2px 5px;
}
hr {
    margin: 10px 0;
    height: 0;
    border: 0;
    border-top:1px solid #bbb;
    border-bottom:1px solid rgba(255, 255, 255, 0);
}
a:link, a:visited {
    color: #7CBD72;
    font-weight: bold;
    letter-spacing: 1px;
    text-decoration: none;
}
a:hover {
    color: orange;
    text-decoration: none;
}
.wrapper {
    background-color: white;
    border: 1px solid #bbb;
    width:600px;
    padding: 20px;
    margin:30px auto 0;    
}
.clearfix:after {
    content: "";
    clear: both;
    display: table;
}
.errors {
    border:1px solid red;
    padding: 10px;

}
.msg {
    border:2px solid #7CBD72;
    padding:3px;
    margin-top: 1em;
}
.nav ul {
    list-style: none;
    padding-left: 0;
}
.nav ul li {
    margin-bottom: 1em;
}
.flex-2-col {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 1em;
}
.manager {
    display: block;
}
.trespass {
    display: none;
}
table.tbl {
    border:1px solid #bbb;
    width:100%;
    margin-bottom: 1em;
}
th, td {
    text-align: left;
    padding:10px 5px;
}
th {
    background:#FFF;
    line-height: 1.3em;
}
tr.odd {
    background-color: rgba(124, 189, 114, 0.1);
}
tr.even {
    background-color:  rgba(124, 189, 114, 0.3);
}
.centered {
    text-align: center;
}
.centered .btn {
    margin-left: auto;
    margin-right: auto;
}
.red {
    color: #F00;
}
.green {
    color: #7CBD72;
}