body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    margin: 0;
}

main {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 0 5vw;
}

#tableDisplay {
    display: flex;
    flex-direction: column;
}

#pages {
    display: flex;
}

table {             
    border: solid black 1px;   
    border-collapse: collapse;
    width: 100%;     
}

table input {             
    outline: none;
    border: none;
    text-align: center;
}

th {              
    text-align: center;
    border: solid black 1px;   
    border-collapse: collapse;         
}

th a {
    color: black;
}

td {      
    text-align: center;          
    border: solid black 1px;   
    border-collapse: collapse;
}

tr:nth-child(even) {
    background-color: #f2f2f2;  
}

tr:hover {
    background-color: #ddd;
}

a {
    color: black;
}

#pages a {
    margin-right: 0.5vw;
}

