.book_list {
    border-spacing: 0;
    table-layout: fixed;
    width: 100%;
    text-align: left;
}

/* Overlay on hover */
.book_list tr:hover {
    background-color: #e4e4e4;
    cursor: pointer;
}

/* Basic row properties */

.book_list > tbody > tr > td {
    vertical-align: top;
    border-bottom: 1px dotted silver;
    padding: 5px;
}

.book_list > tbody > tr:last-child > td {
    border-bottom: none;
}

.book-header {
    display: flex;
    flex-direction: row;
}

.cover-img {
    align-self: center;
    height: auto;
    box-shadow: 0 0 1px black;
    margin: 5px 15px 0 10px;
    max-width: 55px;
}

.book_list td h1 {
    margin: 0;
    font-size: 20px;
}

.book_list td h2 {
    color: #888a85;
    font-size: 16px;
}

.book_info {
    display: none; /* Hide the book info initially, and toggle them in JS when the user clicks */
    margin: 5px;
}

/* List of copies */

.table tbody {
    /* Hack to "hide" the border between copies, but still have the border under the header */
    border: 0 solid transparent;
}

/* Tighten the list of copies */
.table td {
    padding: 0;
}

/* Book footer with links */

.book_info_links {
    font-size: 14px;
    margin: 0 0 5px;
    float: right;
    border-top: 1px solid #babdb6;
}

.book_info_links > li {
    display: inline;
}

.book_info_links .online_resource:hover {
    color: #C41818;
}
