*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    -webkit-appearance: none;
    border-radius: 5px;
}
body {
    padding:30px 15px 0px 15px;
    background-color: #EFEFF4;
}
.wrapper-trucks{
    display: block;
    width: 100%;
    height: calc(100vh - 20px);
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
}
.topNav {
    width: 100%;
    display: grid;
    grid-template-columns: auto auto;
    gap: 10px;
    margin-bottom: 40px;
}
.topNav h1 {
    font-size: 35px;
    color: #484848;
}
.topNav #filter {
    margin-left: auto;
    margin-right: 0px;
    display: grid;
    grid-template-columns: 40% 40% auto;
    max-width: 500px;
    gap: 5px;
}
.topNav select {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    width: 100%;
    height: 100%;

    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border: none;
}
.topNav input[type="date"]{
    border:none;
    padding-right: 10px;
    text-align: center;
    color: gray;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.topNav button {
    background-color: rgb(0, 122, 255);
    border: none;
    color: white;
    font-size: 17px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.topNav button:hover{
    color: lightgray;
}

.wrapper-table {
    display: grid;
    grid-template-columns: 25% auto 20% 20%;
    text-align: center;
    min-width: 900px;
    border-radius: 0px;
    background-color: gray !important;
}
.item {
    padding-top: 5px;
    padding-bottom: 5px;
    
    border-bottom: 1px solid lightgray;
    border-left: 1px solid lightgray;
    border-radius: 0px;

    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
}
.lastRight {
    border-right: 1px solid lightgray;
}

.item a {
    text-decoration: none;
    color: black;
}
.row {
    display: grid;
    grid-template-columns: 25% auto 20% 20%;
    text-align: center;
    min-width: 900px;
    background-color: white;
}
.row:hover{
    background-color: lightgray !important;
}

.header {
    height: 40px;
    font-size: 18px;
    padding-bottom: 5px;
    padding-top: 5px;
    color: white;
    border: none;
    border-right: 1px solid white;
    background-color: #484848;
}






.overlay {
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    background-color: #48484848;
    z-index: 1;
}





.mapsPopUp{
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 530px;
    width: 50%;
    min-width:350px;
    max-width: 600px;
    background-color: white;
    border-radius: 20px;
    z-index: 1;

    text-align: center;
    padding: 20px;
}

.mapsPopUp iframe {
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    border: none;
    width: 100%;
    height: 340px;
    z-index: 999;
}

