
.bild {
    position: relative;
    height: 10vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 60px;
    background-image: url('../assets/bild 1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;


}
.container {
    display: flex;
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
}
.sidebar {
    width: 220px;
    margin-right: 30px;
}
.search-box, .sort-box {
    background: #fff;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.search-box input {
    width: 100%;
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #bbb;
    box-sizing: border-box;
}
.sort-box select {
    width: 100%;
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #bbb;
}
.genre-list {
    background: #fff;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.genre-list h3 {
    margin-top: 0;
    font-size: 18px;
}
.genre-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.genre-list li {
    margin: 8px 0;
}
.book-actions {
    margin-left: 220px;
}


@media (max-width: 1000px) {
    .container {
        flex-direction: column;
    }
    .sidebar {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
    .book-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 700px) {
    .book-grid {
        grid-template-columns: 1fr;
    }
}