body {
    background-image: url("/img/background.png");
    background-repeat: repeat;
    position: absolute;
    bottom: 0;
    top: 0;
    margin: 0;
    padding: 8px;
    width: calc(100% - 16px);
}
nav {
    border-bottom: 1px solid lightgray;
}
nav ul {
    margin-top: 0;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
}
#menuhnadle-img {
    visibility: hidden;
    height: 0;
}
.container {
    min-width: 800px;
    min-height: 0;
    width: 60%;
    height: calc(100% - 10px);
    border: 5px solid indigo;
    background: white;
    overflow: hidden;
}
.center {
    margin: auto;
}
.content-container::-webkit-scrollbar {
    display: none;
}
#navbar-logo-link {
    display: flex;
    line-height: 5rem;
    margin-top: 0;
    margin-bottom: 0;
    justify-content: center;
}
#navbar-logo-image {
    height: 5rem;
    margin: auto;
}
#navbar-toggle {
    visibility: hidden;
}
.navbar-item {
    display: inline-block;
    height: 2rem;
}
.navbar-list {
    padding-left: 8px;
    padding-right: 8px;
}
.navbar-item a {
    display: inline-block;
    height: 2rem;
    line-height: 2rem;
    padding-left: 8px;
    padding-right: 8px;
    color: black;
    text-decoration: none;
}
.navbar-item a:hover {
    background: lightgray;
}
.content-container {
    padding-left: 30px;
    padding-right: 30px;
    position: relative;
    top: 5px;
    width: calc(100% - 60px);
    height: calc(100% - 8rem - 30px);
    overflow-y: scroll;
    overflow-x: hidden;
    scrollbar-width: none;
}
#requestform {
    display: grid;
}

#applicationtext {
    min-height: 150px;
    margin-top: 8px;
    margin-bottom: 8px;
    resize: vertical;
}

#requestform label {
    margin-top: 8px;
}
#requestform input {
    margin-top: 8px;
    margin-bottom: 8px;
}
.imgurl {
    text-decoration: none;
}
#imgcontainer {
    background: rgba(0,0,0,0.4);
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: center;
}
#imgcontainer img {
    position: relative;
    display: block;
    margin: auto;
    vertical-align: middle;
}
#successmessage {
    background: lightgreen;
    border: 1px solid darkgreen;
    display: block;
    margin-left: auto;
    margin-right: auto;
    height: 4rem;
    line-height: 4rem;
    text-align: center;
}
#failuremessage {
    background: lightcoral;
    border: 1px solid darkred;
    display: block;
    margin-left: auto;
    margin-right: auto;
    height: 4rem;
    line-height: 4rem;
    text-align: center;
}
#bookingtable {
    width: 100%;
    border-collapse: collapse;
}
#bookingtable th {
    text-align: left;
}
.free {
    background: rgba(25, 255, 42, 0.3);
}
.full {
    background: rgba(255, 0, 79, 0.3);
}
.actionfield {
    display: flex;
    justify-content: center;
}
@media (max-width: 800px) {
    body {
        padding: 0;
    }
    .container {
        min-width: 0;
        min-height: 0;
        height: calc(100% - 10px);
        width: calc(100% - 10px);
        position: fixed;
    }
    .content-container {
        display: inline-block;
        position: relative;
        left: 150px;
        width: calc(100% - 190px);
        height: calc(100% - 30px);
    }
    #navbar-toggle {
        visibility: visible;
        border: none;
        margin-top: auto;
        margin-bottom: auto;
        background: white;
        outline: none;
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    }

    #menuhnadle-img {
        visibility: visible;
        height: 2rem;
        margin-top: 5px;
        margin-bottom: auto;
    }
    nav {
        display: inline-block;
        justify-content: normal;
        border-right: 1px solid lightgray;
        width: 150px;
        height: calc(100% - 10px);
        position: fixed;
    }
    nav ul{
        margin-top: 12px;
        position: fixed;
        top: 2.5rem;
        left: 0;
    }
    .navbar-item {
        display: block;
        height: 2rem;
        width: 150px;
    }
    .navbar-list {
        display: block;
        padding-left: 5px;
        padding-right: 0;
    }
    .navbar-item a {
        padding-left: 14px;
        width: calc(100% - 14px);
        padding-right: 0;
    }
    .navbar-inactive .navbar-list {
        visibility: hidden;
    }
    nav.navbar-inactive {
        border-right: none;
        border-bottom: none;
    }
    .content-container.navbar-inactive {
        position: relative;
        top: calc(2rem + 10px);
        left: 0;
        width: calc(100% - 60px);
        height: calc(100% - 2rem - 30px);
    }
    #navbar-logo-link {
        line-height: 2rem;
        margin-top: 5px;
        margin-right: 5px;
    }
    #navbar-logo-image {
        height: 2rem;
        position: absolute;
          left: 3rem;
          top: 0.25rem;
    }
    .imgurl img {
        width: 100%;
    }
}
