* {
    box-sizing: border-box;
}

html, body {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    height:100%;
    margin:0;
}

a {
    color:#0539ff;
    font-weight: 600;
}

body {
    display: flex;
    flex-direction: column;
    margin-left: calc(100vw - 100%);
}

main {
    height: 100%;
}

.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 6rem;
}

input:not([type="checkbox"]), select {
    font-family: inherit;
    border: none;
    border-bottom: 1px solid lightgray;
    padding: 0.5rem;
    margin-bottom: 1rem;
    width:100%;
}

.select-label {
    color: gray;
    font-size: small;
    margin-top: 1rem;
    margin-bottom: 0.3rem;
}


button, input[type="submit"]{
    text-transform: uppercase;
    font-size: 16px;
    padding: 10px;
    cursor: pointer;
    background: #0539ff;
    border:none;
    color:white;
    transition: background ease 0.3s;
}
button:focus, input[type="submit"]:focus, button:hover, input[type="submit"]:hover{
    background: #1239d0;
}

button:active, input[type="submit"]:active {
    background: #0c2ba0;
}

button:disabled, input[type="submit"]:disabled {
    background: lightgray;
    color:gray;
}

form {
    /* margin: 0 1rem; */
    min-width: 300px;
    max-width: 500px;
}
textarea {
    resize: none;
    padding: 0.5rem;
    font-family: 'Roboto', sans-serif;
}

fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

form label {
    display: block;
}

form label.inline-label{
    display: flex;
    flex-direction: row;
}

.login {
    height:100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.register-help{
    max-width: 300px;
    font-size: 14px;
    text-align: center;
}

pre {
    background: #f6f6f6;
    padding: 10px;
    display: block;

}

code {
    background: black;
    color: white;
    padding: 1px 5px;
    border-radius: 3px;
}

hr {
    border: none;
    border-bottom: 1px solid lightgray;
    margin: 1rem 0;
}

.parker-icon{
    margin:0 auto; 
    display:block; 
    width:300px;
    height:300px;
}

.parker-icon-medium{
    width:200px;
    height:200px;
}

.parker-icon-small {
    width:100px;
    height:100px;
}

.postlink {
    display: inline;
    margin: 0;
}
.postlink button {
    font-family: inherit;
    font-size: 18px;
    padding: 0;
    background: none;
    color:#0539ff;
    font-weight: 600;
    text-decoration: underline;
    text-transform: none;
}

table{
    width:100%;
    border-collapse: collapse;
}

td{
    font-size: 14px;
    border-top: 1px solid lightgray;
    vertical-align: top;
    max-width: 400px;
}
.td-nowrap {
    white-space: nowrap;
}
td,th{
    padding:1rem;
}

td a {
    text-decoration: none;
}

td:last-child, th:last-child{
    padding-right: 0;
}

.td-left{
    text-align: left;
}

.td-right{
    text-align: right;
}

.td-num {
    text-align: right;
    width: 165px;
}


.parkinglots-form{
    margin:0;
}

.parkinglots-table-footer{
    display: flex;
    justify-content: space-between;
}

table input:not([type="checkbox"]) {
    margin:0;
    border:none;
    border:1px solid lightgray;
}

textarea {
    border: 1px solid lightgray;
    width: 100%;
}

.header {
    text-align: center;
}
.header h1 {
    margin-bottom: 0;
}
.header h4 {
    margin-top: 0.5rem;
}
.header__user a{
    margin-left: 0.5rem;
}
.center-header {
    text-align: center;
}

.main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-header h1 {
    margin-left: 1rem;
}

h3 small {
    font-weight: 100;
    font-size: 14px;
}

.tabs {
    margin-top: 1rem;
    margin-bottom: calc(-1rem - 1px);
}

.tabs a {
    display: inline-block;
    border: 1px solid lightgray;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    padding: 0.7rem 1rem;
    text-decoration: none;
}

.tabs a:not([href]) {
    background: #0539ff;
    border-color: #0539ff;
    color:white;
}

.field-wrap {
    position: relative;
}

.charcount {
    position: absolute;
    font-size: 10px;
    color:gray;
    top:3px;
    right:3px;
}

.push-targets-number {
    font-size: 1.4rem;
}
