.grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto 1fr;
    height: 90vh;
}
.gridHostingTool{
    display: grid;
    grid-template-rows: 1fr auto;
    height: 90vh;
}
header{
    grid-column: 1 / 4;
    grid-row: 1 / 2;
    padding: 0px;
    margin: 0px;
    border-style: solid;
    background-color: black;
    border-color: lightgreen;
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: 40px 50px;
    height: auto;
}
.column{
    border-style: solid;
    background-color: black;
    border-color: lightgreen;
    text-align: center;
    font-size: 24px;
    border-top: none;
    padding: 10px;
}

body{
    background-color: black;
    font-family: sans-serif;
    border-color: lightgreen;
    color: #fbfbfb;
}

#instructions{
    margin: auto;
    width: 70%;
    background-color: black;
    color: #fbfbfb;
    border-radius: 6px;
    padding: 4px;
    font-weight: lighter;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    line-height: 1.3;
}

#middleColumn{
    border-right: none;
    border-left: none;
}
#leftBarHeader{
    text-align: center;
    color: white;
    font-weight: bold;
    margin-bottom: 10px;
}
#rightBarHeader{
    text-align: center;
    color: white;
    font-weight: bold;
    margin-bottom: 10px;
}
.locationInput{
    margin-bottom: 20px;
}
.labelForLocationInput {
    font-weight: bold;
}
#secretLocation{
    width: 200px;
}

.title{
    display: grid;
    grid-template-columns: auto 1fr;
    margin-bottom: 5px;
    height: auto;
    padding: 5px;
}
.title img {
    float: left;
    grid-column: 2 / 3;
    height: 20px;
    width: 20px;
    vertical-align: bottom;
    padding: 3px;
    margin-left: 4px;
}
.title h2{
    grid-column: 1 / 2;
    margin: 0px;
    vertical-align: middle;
    color: lightgreen;
}
.popup {
    position: relative;
    display: inline-block;
    cursor: pointer;
}
.popup .popuptext {
    visibility: hidden;
    background-color: #fbfbfb;
    color: black;
    width: 50%;
    position: absolute;
    border-radius: 6px;
    border: 3px;
    border-color: darkgrey;
    border-style: solid;
    padding: 10px;
    z-index: 1;
}
.popup .show {
    visibility: visible;
}
.line{
    border-top: 5px;
    border-color: azure;
    border-style: solid;
}
.toolContainer{
    border-width: 1px;
    padding: 20px;
    background-color: #2c2b2b;
    border-radius: 5px;
    width: 80%;
    margin: auto;
}