body{
	font-family: lato;
    margin: 0;
}

h2{
    width: fit-content;
    margin: auto;
    text-align: center;
}

#banner{
    width: 100%;
    display: flex;
	position: relative;
	top: 0;
	z-index: 9999;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    /*align-items: stretch;*/
}

#logo_svg{
    height: 100px;
}


table{
    table-layout: fixed;
    border-collapse: collapse;
}

td {
	max-width: 600px;
	word-wrap:break-word;
    border: 1px solid darkgrey;
    padding-left: 0.5em;
    padding-right: 0.5em;
    padding-top: 0.25em;
    padding-bottom: 0.25em;
}

.rightText{
	text-align: right;
}


#content{
    width: 100%;
    /*width: fit-content;*/
    margin: auto;
}


tr:nth-child(odd){
	background-color: #eeeeeeff
}

tr:nth-child(even){
	background-color: #cccccce0
}

#MenuButtons{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    flex-basis: 75%;
}


#MenuButtons a {
	color: black;
	text-decoration: none;
}

#MenuButtons a:hover {
	text-decoration: underline;
}


#buttons{
	margin: auto;
	min-width: 200px;
}


.link_set{
	display: flex;
	flex-direction: row;
    flex-wrap: wrap;
    width:100%;
    justify-content: center;
    align-items: stretch;
}

.link_set p{
    margin: 0.25em;
}

.home_menu_button{
    padding: 10px;
    margin: 10px;
    border: 2px solid rgba(128,192,32,0.2);
    text-align: center;
    transition: 250ms;
    background-color: rgba(128,192,32,0.2);
    font-size: 22px;
    min-width: 225px;
    cursor: pointer;
}

.home_menu_button:hover{
    border: 2px solid rgba(192,255,96,0.9);
    background-color: rgba(128,192,32,0.3);
}

.admin_button{
    border: 2px solid rgba(255,192,32,0.2);
    background-color: rgba(255,192,32,0.2);
}

.admin_button:hover{
    border: 2px solid rgba(255,255,96,0.9);
    background-color: rgba(255,192,32,0.3);
}


#map_area{
    width:100%;
    height:100%;
}


#modal_overlay{
    position: fixed;
    background-color: rgba(148, 148, 148, 0.5);
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

#modal_container{
    width: 80%;
    /* height: 80%; */
    background-color: rgb(255, 255, 255);
    margin: 10%;
    margin-top: 200px;
    max-width: 100%;
    max-width: 100%;
    margin-left: auto;
    max-height: 75%;
}

#modal_content{
    width: 100%;
    max-width: 100%;
    margin: auto;
    padding-top: 1em;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-content: center;
    padding: 5px;
}

#submodal_overlay{
    position: absolute;
    background-color: rgba(148, 148, 148, 0.5);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.submodal_container{
    width: max-content;
    min-width: 400px;
    height: max-content;
    background-color: rgb(255, 255, 255);
    margin: auto;
    margin-top: 10%;
    max-width: 100%;
}

#submodal_content{
    display: flex;
    flex-flow: column;
    align-content: center;
    align-items: center;
}


div.button{
    background-color: lightgray;
    border-radius: 5px;
    cursor: pointer;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 15px;
    border-radius: 5px;
}

.button.negative{
    background-color: rgba(92, 0, 0, 0.5);
}


.button.positive{
    background-color: rgba(0, 92, 0, 0.55);
}

.input_block{
    width: 100%;
    max-width: 350px;
    display: flex;
    flex-flow: row;
    align-content: space-between;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
}
