﻿.search-filterbars {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.search-dropdowns {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 8px 0;
}

.search-filters-loading {
    text-align: center;
    opacity: 0.5;
    padding: 1rem;
}

.search-results {
    width: 100%;
    margin-top: 12px;
}

.search-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .search-filterbars,
    .search-dropdowns {
        flex-direction: column;
        align-items: stretch;
    }

        .search-dropdowns .sortbox {
            width: 100%;
        }
}


.pagination {
    display: flex;
    gap: 4px;
    justify-content: center;
    padding: 16px;
}

.page-btn {
}

    .page-btn.active {
    }

.page-ellipsis {
    padding: 0 4px;
    align-self: center;
}