/* 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%;
}
.library-book-card {
    display: flex;
    overflow: hidden;
    min-height: 60px;
    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: 30px;
    min-height: 100%;
    /* border-radius: 5px; */
    border-bottom: 1px solid #666;
}
.library-book-card-description {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-between;
    padding-left: 5%;
    padding-right: 5%;
    width: 85%;
}
.library-book-card-titleAuthorGrp {
    max-width: 85%;
}
.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 {
    display: none;
}