/* Overrides */
.tldr {
    margin-bottom: 1.5em;
}
#library-filter-buttons {
    display: flex;
}
.button-sort {
    display: flex;
    align-items: center;
    max-height: 25px;
}
.button-sort svg {
    margin-right: 5px;
}
.button-library-toggle {
    border: 1px solid;
    border-radius: 5px;
    margin-left: 5px;
    margin-bottom: 1rem;
    font-size: small;
}
#library-list-toggle {

}
#library-sort-toggle {
    width: 100px;
}
#library-filter-toggle {
    width: 120px;
}

#library-root {

}
.library-content {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.library-book {
    width: 100%;
    margin-bottom: 15px;
}
.library-book-card {
    overflow: hidden;
    height: 100%;
    min-height: 380px;
    border: 1px solid #666;
    border-radius: 5px;
    /* padding-bottom: 10px; */
    margin: 5px;
}
.library-book-img {
    /* display: none; */
    background-color: var(--secondarycolorLight);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 300px;
    /* border-radius: 5px; */
    border-bottom: 1px solid #666;
}
.library-book-card-description {
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-left: 5%;
    padding-right: 5%;
}
.library-book-title {
    font-size: clamp(1rem, 2vw, 1.5rem);
    margin-bottom: 0;
}
.library-book-author {
    margin: 0;
    margin-bottom: 1em;
}
.library-book-status {
    margin: 0;
    padding-left: 1em;
    padding-right: 1em;
    padding-top: .5em;
    padding-bottom: .5em;
    font-size: small;
    border-radius: 5px;
}
.library-book-check {

}

@media only screen and (min-width : 365px) {
    /* Tablet view: 2 tiles */
    .library-book {
        width: 50%;
    }
}
@media only screen and (min-width : 480px) {
    /* Small desktop / ipad view: 3 tiles */
    .library-book {
        width: 33.3%;
    }
}