@font-face {
    font-family: 'Roboto';
    src: url('/fonts/Roboto-Regular.ttf') format('truetype');
  }
body{
    color: #303030;
    font-family: 'Roboto', sans-serif;
}
.menu{
    border: solid;
    border-width: 1px;
    background-color: #1c1601;
    border-color: #939393;
}
.logo{
    padding: 10px;
}
.mainMenu{
    display: flex;
    float: right;
    margin-top:16px;
    font-size: 30px;
    font-weight: 600;
}
.mainMenu a{
    font-size: 16px;
    color:#d9d9d9;
    font-weight: 600;
    padding-top: 30px;
    padding-left: 0px;
    padding-bottom: 25px;
    padding-right: 0px;
    /*margin-left: 20px;*/
    margin-right: 20px;
    text-decoration: none;
}
.mainMenu a:hover{
    color:#939393;
}
ul{
    list-style-type: none;
}

/*search bar css*/
.search{
    font-family: 'Roboto', sans-serif;
    border: solid;
    border-color: #939393;
    border-width: 3px;
    border-radius:99px;
    width:60%;
    height:30px;
    padding-top: 10px;
    padding-left: 20px;
    padding-right:20px;
    padding-bottom:10px;
    color: black;
}
.searchIcon{
    margin-left: -100px;
    margin-bottom: -10px;
}
button{
    border: none;
    cursor: pointer;
    appearance: none;
    background-color: inherit;
}
.searchbox{
    text-align:center;
}

/*table css*/
.table-container{
    overflow-y: auto;
    overflow-x: auto;
    margin-bottom:100px;
}
table{
    width: 1280px;
    border-collapse: collapse;
    margin: 0 auto;


}

table tr:nth-child(even){
    background-color:grey;
    color: white;
}

table tr:hover {
    background-color: #ddd;
    color:black;
}
th{
    border-top: solid;
    border-bottom: solid;
    border-width: 5px;
    background-color: black;
    color: white;
    text-align: left;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 30px;
    padding-right: 30px;
    font-size:13px;
}

tr{
    text-align: center;
    font-weight: 600;
}

td{
    line-height: 22px;
    /*padding:10px;*/
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 30px;
    padding-right: 30px;
    text-align: left;
}
.carIcon{
    width: 40px ;
    height: 35px ;
    margin-right: 20px;
    vertical-align: middle;
}

/*page css*/
.page-container{
    text-align: center;
}
.pagination {
    display: inline-block;
  }

.pagination a {
    color: black;
    float: left;
    padding: 8px 16px;
    text-decoration: none;
  }

.pagination a.active {
    background-color: red;
    color: white;
    border-radius: 5px;
  }

.pagination a:hover:not(.active) {
    background-color: black;
    color:white;
    border-radius: 5px;
  }

.desktop-table{
    display: block;
}

.mobile-table{
    display: none;
}

.menu .logo img{
    width: 320px;
    height: auto;
}

#footer {
    position: fixed;
    bottom: 0;
    width: 100%;
}

#footer img{
    width: 120px;
    height: auto;
}

@media only screen and (max-width: 768px) {
    .desktop-table{
        display: none;
    }

    .mobile-table{
        display: block;
    }

    .mobile-table table{
        width: 100%;
    }

    table tr:nth-child(odd){
        background-color:grey;
        color: white;
    }

    table tr:nth-child(odd):hover {
        background-color: #ddd;
        color: black;
    }

    table tr:nth-child(even){
        background-color:white;
        color: black;
    }

    table tr:nth-child(even):hover {
        background-color: #ddd;
        color: black;
    }

    .menu .logo img{
        width: 220px;
        height: auto;
    }

    #footer img{
        width: 100px;
        height: auto;
    }
}
