#title {
    display: flex;
    align-items: center;
}
#title-heading {
    width: 80%;
}
#search {
    display: flex;
    margin-bottom: 0;
}
.input-field {
    display: flex;
    align-items: center;
    border-bottom: 2px solid rgba(32, 32, 32, 0.12);
    transition: border .2s;
}
.input-field:focus-within {
    border-bottom: 2px solid rgba(32, 32, 32, 0.72);
}
.input-field .material-icons {
    display: flex;
    align-items: center;
}
.input-field input{
    display: inline-block;
    margin: 0;
    border: none;
}
.input-field input:focus {
    border: none;
}
#papers {
    font-size: 1.7rem;
}
.publisher {
    width: 20%;
}
.title {
    width: 60%;
}
.author {
    width: 20%;
}
tbody .title a{
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: black;
}
tbody .title a:hover {
    color: #333;
}
.page {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
}
.page a {
    text-decoration: none;
    color: #888;
}
.page .prev {
    text-align: left;
    font-size: 2rem;
}
.page .current {
    text-align: center;
    font-size: 2rem;
}
.page .next {
    text-align: right;
    font-size: 2rem;
}
