.wardrobe {
    max-width: 1200px;
    width: 100%;
    background-image: url("/assets/img/light_wood.png");
    background-repeat: repeat;
    background-size: 256px 256px;
    border-radius: 10px;
    padding: 10px 10px 10px 10px;
    box-sizing: border-box;
    width: fit-content;
}

.shelfs {
    border-radius: 10px;
    background-image: url("/assets/img/dark_wood.png");
    background-repeat: repeat;
    background-size: 256px 256px;
    box-shadow: inset 0px 0px 40px black;
    padding: 10px;
    flex-wrap: wrap;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 40px;
    row-gap: 40px;
}

.head {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    gap: 20px
}

.footer {
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    margin-bottom: 10px;
    gap: 20px
}

.footer label {
    width: 64px;
    text-align: center;
    border-width: 0;
    border-radius: 20px;
    background-image: url("/assets/img/dark_wood.png");
    background-size: cover;
    color: #f3bb9b;
    padding: 10px;
    box-shadow: inset 0 0 10px black;
}

.search_block input {
    border-width: 0;
    border-radius: 20px 0px 0px 20px;
    background-image: url("/assets/img/dark_wood.png");
    background-size: cover;
    color: white;
    padding: 10px;
    box-shadow: inset 0 0 10px black;
}
.search_block {
    border-radius: 20px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-around;
    box-shadow: 0 0 3px rgba(0,0,0,0.5);
}
.wardrobe .books__button {
    background: none;
    background: linear-gradient(#cc9e66, #fbe3b6 35%, #fbe3b6 65%, #cc9e66);
    border-radius: 20px;
    border-width: 0;
}
.search_block .books__button {
    border-radius: 0px 20px 20px 0px;;
}
.search_block input::placeholder{
    color: #f3bb9b;
}
.wardrobe .books__button:hover {
    background: linear-gradient(#e2b072, #ffeece 35%, #ffeece 65%, #e2b072);
}
.wardrobe .books__button:active {
    background: linear-gradient(#cc9e66, #fbe3b6 35%, #fbe3b6 65%, #cc9e66);
}
.title{
    font-family: sans-serif;
    font-size: 24pt;
}
.sort_block {
    border-radius: 20px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-around;
    box-shadow: 0 0 3px rgba(0,0,0,0.5);
}
.sort_block .books__button:first-of-type {
    border-radius: 20px 0px 0px 20px;
    border-right: 1px solid black;
}

.sort_block .books__button:last-of-type {
    border-radius: 0px 20px 20px 0px;
}

.sort_block .books__button {
    padding: 10px;
}

.footer .books__button {
    box-shadow: 0 0 3px rgba(0,0,0,0.5);
    padding: 0 10px 0 10px;
}

.book {
    width: 100px;
    margin: 0;
    padding: 0;
}
.book img {
    width: 100%;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 5px 5px 10px rgba(0,0,0,0.5);
}