.site__header {
    padding-top: 84px;
    padding-bottom: 7px;
    position: relative;
    z-index: 1;
    background: black;
    text-align: center;
}
.container {
    position: relative;
}
.filter-box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 18px;
}
.section-title {
    margin: 15px 0;
}
.results-meta {
    margin: 10px 0 18px;
    color: #666;
    font-size: 14px;
}
.breed-dropdown {
    position: relative;
    width: 100%;
}
.breed-selected {
    border: 1px solid #ced4da;
    padding: 10px 42px 10px 12px;
    background: #fff;
    cursor: pointer;
    border-radius: 4px;
    min-height: 42px;
    display: flex;
    align-items: center;
    color: #555;
    position: relative;
    user-select: none;
}
.breed-selected:after {
    content: '';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 7px solid #888;
}
.breed-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ced4da;
    border-top: none;
    max-height: 320px;
    overflow: auto;
    z-index: 9999;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}
.breed-search-wrap {
    padding: 0;
    border-bottom: 1px solid #eee;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 2;
}
.breed-search {
    width: 100%;
    border: 0;
    padding: 10px 12px;
    outline: none;
    font-size: 14px;
    background: #fff;
}
.breed-item {
    padding: 12px;
    cursor: pointer;
    font-size: 14px;
    color: #555;
    background: #fff;
}
.breed-item:hover,
.breed-item.active {
    background: #f3f3f3;
}
.pagination-wrap {
    margin-top: 30px;
    margin-bottom: 20px;
    text-align: center;
}
.pagination-link {
    display: inline-block;
    padding: 8px 14px;
    margin: 4px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    text-decoration: none;
    font-weight: 600;
    color: #333;
}
.pagination-link:hover {
    background: #f5f5f5;
    color: #111;
}
.pagination-link.active {
    background: #111;
    color: #fff;
    border-color: #111;
}
.pagination-link.disabled {
    opacity: 0.5;
    pointer-events: none;
}
.no-results {
    padding: 16px;
    border: 1px solid #eee;
    border-radius: 12px;
    background: #fff;
    margin-top: 10px;
}
@media (max-width: 767px) {
    .filter-box .row > div {
        margin-bottom: 12px;
    }
}
