body {
    font-size: 100%;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.headingBar {
    background-color: navy;
    width: 45%;
    text-align: center;
    color: white;
    margin-left: auto;
    margin-right: auto;
    padding: 5px;
    font-size: 3em;
    border-radius: 5px;

}

.firstRow {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    margin-bottom: 2%;
    width:60%;
    margin-left: 20%;

}

.infoTab {
    background-color: rgb(235, 235, 235);
    border-radius: 5px;
    width: 400px;
    padding: 10px;
}

.infoTab h2, p {
    margin-top: 2px;
    margin-bottom: 8px;
    font-size: 0.9em;
}

.mainColumn {
    display:flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 5%;
}

.loginField {
    background-color: rgb(235, 235, 235);
    width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5px;
    border-radius: 5px;
    margin-left: 2.5%;
}

.loginField.v2 {
    margin-bottom: 2%;
}

.loginField h2 {
    margin-top: 4%;
    margin-bottom: 4%;
    font-size: 1.2em;
    text-align: center;
}

.loginField input[type="text"], .loginField input[type="password"] {
    width: 200px;
    border-radius: 2px;
    padding: 10px;
    margin-bottom: 4%;
    border-style: solid;
    border-color: black;
}

.loginField input[type="submit"] {
    width: 100px;
    margin-left:6%;
    padding: 2%;
    background-color: limegreen;
    border-style: solid;
    border: none;
    border-radius: 5px;
    font-family: Arial;
    font-size: 1.05em;
}

.loginField input[type="submit"]:hover {
    background-color: lightgreen;
    transition-duration: 0s;

}

.inputs {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.submitRow {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.submitRow2 {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.statusMessage {
    width: 50%;
    margin-left: 5%;
    color: red;
    font-size: 0.8em;

}

.searchBarRow {
    background-color: rgb(235, 235, 235);
    width: 55%;
    height: 60px;
    margin-bottom: 2%;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

input[type="submit"] {
    font-family: Arial;
    font-size: 1.05em;
    padding: 2%;
    background-color: limegreen;
    border-style: solid;
    border: none;
    height: 39.2px;
    text-align: center;
}

input[type="submit"]:hover {
    background-color: lightgreen;
    transition-duration: 0s;
    
}

input[type="text"], input[type="password"] {
    border-radius: 2px;
    padding: 10px;
    border-style: solid;
    border-color: black;
    width: 250px;
}

.searchBar {
    width: 70%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}

.resultsBox {
    background-color: rgb(235, 235, 235);
    width: 55%;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2%;
}

.subResultsBox {
    display: flex;
    flex-direction: row;
    justify-content: right;
}

.resultsTable {
    border-collapse: collapse;
    width: 750px;
    border: 1px solid;
    background-color: white;

}

th {
    height: 30px;
    padding: 5px;
    background-color: lightgreen;
    border: 1px solid;
    border-color: black;
    
}

td {
    padding: 5px;
    border: 1px solid

}

tr:nth-child(even):not(:first-child) {
    background-color: lightgrey;

}

td:not(:first-child) {
    text-align: center;
}

.firstTableColumn {
    width: 55%;
}

.navLink:link, a:visited {
    background-color: limegreen;
    padding: 10px;
    color: black;
    text-align: center;
    text-decoration: none;
    border-radius: 3px;

}

.navLink:hover {
    background-color:lightgreen;
}