* {
    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;
}

main {
    height: 100%;
}

input:not([type="checkbox"]), select {
    font-family: inherit;
    border: none;
    border-bottom: 1px solid lightgray;
    padding: 0.5rem;
    margin-bottom: 1rem;
    width:100%;
}


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 {
    background: lightgray;
    color:gray;
}

form {
    margin: 0 1rem;
    min-width: 300px;
}

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;
}

.main-content {
    max-width: calc(100% - 4rem);
    margin: 0 auto;
    padding-bottom: 6rem;
}

pre {
    background: #f6f6f6;
    padding: 10px;
    display: block;

}

pre > * {
    margin-top: 0;
    margin-bottom: 0;
}

pre ul {
    line-height: 0.5em;
}

code {
    background: black;
    color: white;
    padding: 1px 5px;
    border-radius: 3px;
}

textarea {
    width: 100%;
}

.parker-icon{
    margin:0 auto; 
    display:block; 
    width:300px;
    height:300px;
}

.parker-icon-medium{
    width:200px;
    height:200px;
}

.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{
    border-top: 1px solid lightgray;
}
td,th{
    padding:10px 5px;
}

td a {
    text-decoration: none;
}

td:last-child, th:last-child{
    padding-right: 0;
}

.td-left{
    text-align: left;
}

.td-right{
    text-align: right;
}

table .td-num {
    min-width: 4rem;
    max-width: 5rem;
}
.td-id{
    font-weight: 600;
    font-size: 1.5rem;
    font-family: monospace;
}

.parkinglots-form{
    margin:0;
}

.parkinglots-table-footer{
    display: flex;
    justify-content: space-between;
}

.publish-warning {
    background-color: lightgoldenrodyellow;
    padding: 0.5rem 2rem 1rem 2rem;
}

table input:not([type="checkbox"]) {
    margin:0;
    border:none;
    border:1px solid lightgray;
}
table textarea {
    display: block;
    margin:0;
    border:none;
    border:1px solid lightgray;
}



