#content{
    margin: 0 auto 0 auto;
    font-family:Arial;
    width: 1200px;
}
button{
    cursor: pointer;
}
#search{
	padding: 5px;
}
.textsvg{
    height: 1em;
    margin-left: 0.2em;
    margin-right: 0.2em;
}
#navbar{
    background: linear-gradient(#ffffff, #aaaaaa);
    height: 80px;
    display: flex;
}
.navbar-area{
    height: 100%;
    display: flex;
    justify-content: right;
    align-items: center;
}

#navbar-left, #navbar-right{
    width: 10%;
    justify-content: center;
    align-items: center;
}
#navbar-center{
    width: 80%;
    display: flex;
    flex-direction: row;
}
.navlink a{
    margin: 20px;
    color: black;
    text-decoration: none;
    cursor: pointer;
}
.navlink a:hover {
       text-decoration: underline ;
       color: #000000;
}
#lang:hover{
cursor: default;
}
#lang-dd{
    max-width: 100%;
    margin: 0 auto 0 auto;
	display: block;
}
#user-dd{
    max-width: 100%;
    margin: 0 auto 0 auto;
    height: 60%;
    display: block;
    align-items: center;
}
#user-dd div{
	align-items: center;
}
#user-dd #usersvg{
    height: 100%;
}
#user-dd #caretsvg{
    height: 50%;
    margin: 0 auto 0 auto;
}
.dd-content{
    display: none;
    position: absolute;
    background-color: #f9f9f9;
	border: 1px solid black;
}
.dd-content a {
    float: none;
    color: black;
    padding: 6px 8px;
    text-decoration: none;
    display: block;
    text-align: left;
	width: calc(100% - 16px);
	border: 1px solid rgba(0,0,0,0.2);
}
.dd-content a:hover {
    background-color: #aaa;
    color: white;
}
#lang-dd:hover .dd-content{
    display: block;
    flex-direction: column;
}
#user-dd:hover .dd-content{
    display: flex;
    flex-direction: column;
}
#userbar{
    background-color: white;
    height: 120px;
    display: flex;
}

.userbar-area{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#userbar-left, #userbar-right{
    width: 20%;
    justify-content: center;
    align-items: center;
}
#userbar-center{
    width: 60%;
    display: flex;
    flex-direction: row;
}
.userbar-input-div{
    margin: auto;
	font-family:Arial;
}
#awardsvg{
    height: 70%;
}
#awardsvg img{
    height: 100%;
}

body{
	position: absolute;
	background-image: linear-gradient(0deg,rgba(255,255,255,0.4) 70%, rgba(0,0,0,1)),url(../img/background.jpeg);
    background-size: cover;
	background-position: bottom;
	height:100%;
	width: 100%;
}

#inputs{
    height: 33%;
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
}
#inputs div{
    margin-top: auto;
    margin-bottom: auto;
}
datalist{
	overflow-y: auto;
}
datalist option{
	color: black;
	line-height: 1.1em;
}
.input-box{
    display: flex;
    height: fit-content;
    padding: 3px;
    margin: 200px;
}
.input-box div{
    flex:1;
}
.search-button{
	display: flex;
	flex:1;
    height: fit-content;
    padding: 3px;
	margin-right: 200px;
}
.search-button button{
	margin:auto;
}
.seperator{
    margin: auto 5px auto 5px;
}
.border-r{
    border: 1px black solid;
    border-radius: 10px;
}
.bg-w{
    background-color: white;
}
.bg-ab{
	background-color: #C9E8FC;
}
.p3{
    padding: 3px;
}
.flexbox{
    display: flex;
    align-items: center;
}
.flexbox input{
	padding: 5px;
}
.flex{
	display: flex;
    flex:1;
}
.bg-w button, .bg-w input, .bg-ab button{
    border: none;
    outline: none;
    background: none;
}
#ticket-container{
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(0,0,0,0.4);
	align-items: center;
	justify-content: center;
}
#ticket-box{
	display: flex;
	flex-direction: column;
	width: 1200px;
	height: 80%;
	border: 2px solid black;
	background-color: white;
	align-items:center;
	justify-content: center;
}
#ticket-box h2{
	height: 10%;
}
#ticket-table-container{
	display: flex;
	height: 80%;
	width: 100%;
	justify-content: center;
}
#ticket-box-buttons{
	height: 10%;
	width:100%;
	display: flex;
	align-items: center;
}
#ticket-box-buttons button{
	height: 1.5em;
	margin: auto;
}
#ticket-table {
	display: block;
	border-collapse: collapse;
	max-height:100%;
	overflow: auto;
}
#ticket-table th, #ticket-table td{
	border: 1px solid black;
	padding:5px;
}
#ticket-table th{
	background-color: rgba(127,206,241,0.6);
}
#ticket-table tr:nth-child(odd){
	background-color: rgba(0,0,0,0.1);
}