.books-archive-filters-container {
    display: flex;
    justify-content: center;
    width: 100%;
}
.books-archive-filters {
    max-width: 600px;
}

.books-archive-filter {
    margin-bottom: 20px;
}

.books-archive-filter label {
    color: #999;
    font-size: 14px;
    display: block;
    width: 100%;
}
.books-archive-filter input, .books-archive-filter select {
    width: 100%;
    background: white;
    border-radius: 10px;
    border: 1px solid #ccc;
    margin-top: 10px;
    color: #666;
    font-size: 15px;
}

.books-archive-button-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.books-archive-button-container button {
    width: 100%;
    border: none;
    max-width: 400px;
}
.books-archive-button-container button:focus {
    outline: none;
}

@media screen and (min-width: 1024px) {
    .books-archive-filters-container {
        justify-content: start;
    }
    .books-archive-filters {
        width: 100%;
        max-width: 100%;
        display: flex;
        align-items: end;
        margin: 0 -10px;
    }

    .books-archive-filter {
        padding: 0 10px;
        margin-bottom: 0;
    }

    .books-archive-button-container {
        padding: 0 10px;
        margin-top: 0;
    }

    .books-archive-filter select {
        width: 200px;
    }
}