.div-filter {
    /* border: 1px solid red; */
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 25px;
    margin-top: 50px;
    font-family: "Merriweather", serif;
}

.filter-input-part {
    /* border: 1px solid blue; */
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.filter-input-part label {
    cursor: pointer;
}

.filter-input-part input {
    font-size: 20px;
    border: 0;
    border-bottom: 2px dotted #D98C3F;
    background-color: transparent;
    outline: 0;
}

#book-list {
    /* border: 3px solid green; */
    background-color: #F5F5F5;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#book-list a {
    text-decoration: none;
    color: #D98C3F;
    transition: 0.2s;
}

#book-list a:hover {
    color: #8C4F21;
}

.all-books {
    /* border: 1px solid blue; */
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.one-book {
    /* border: 1px solid red; */
    background-color: #b388679b;
    width: 500px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding-top: 15px;
    clip-path: polygon(0 0, 100% 0, 98% 100%, 2% 100%);
    font-size: 20px;
}

.one-book:nth-child(odd) {
    background-color: #CBB7A3; /* světlejší béžovo-hnědá */
}

.one-book:nth-child(even) {
    background-color: #BFA58F; /* o něco tmavší hnědá */
}

.one-book .book-name {
    height: 70px;
    /* border: 1px solid green; */
}

.one-book .book-note {
    font-style: italic;
    font-size: 18px;
    /* border: 1px solid red; */
    height: 60px;
}

.one-book .book-state-ok {
    color: #218838;
}

.one-book .book-state-bad {
    color: #C82333;
}

.one-book .book-state-ko {
    font-style: italic;
}

.div-btn a {
    text-decoration: none;
    border-bottom: 2px solid transparent;    
    color: #D35400;
    transition: 0.3s;
}

.div-btn a:hover {
    color: #FF7F50;
    border-bottom: 2px solid #FF7F50;

}