﻿html, body {
    overflow: auto;
    height: 100%;
}

body {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
    overflow-x: hidden;
}

.nav-row {
    background: rgba(0, 0, 0, 0.4);
    padding-top: 1%;
    padding-bottom: 0.5%;
    margin-bottom: 3%;
}

.body-content {
    height: inherit;
    padding-left: 15px;
    padding-right: 15px;
}


.title-text {
    text-align: center;
    color: white;
    margin-top: 0px;
}

input,
select,
textarea {
    max-width: 280px;
}

/* Dropdown Button */
.dropbtn {
    background-color: transparent;
    color: white;
    font-size: 16px;
    border: none;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
    float: right;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

    /* Links inside the dropdown */
    .dropdown-content a {
        color: black;
        text-decoration: none;
        display: block;
        padding: 5px 5px 5px 5px;
    }

        /* Change color of dropdown links on hover */
        .dropdown-content a:hover {
            background-color: #ddd;
            color: black;
        }

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}