.sf-search-results {
    position: relative;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
    background-color: #fff;
    padding: 10px 0;
    margin: 20px 0;
    list-style: none;
    gap: 5px;
}

.page-item {
    display: flex;
    margin: 0;
    padding: 0;
}

.page-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: transparent;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 16px !important;
    color: #333;
    text-decoration: none;
    border: none;
    margin: 0;
    padding: 0;
}

.page-item:not(.active) .page-link:hover {
    border: 2px solid #333;
}

.page-item.active .page-link {
    background-color: #5cff96;
    border: 2px solid #333;
}

/* Previous/Next arrows */
.page-item:first-child .page-link,
.page-item:last-child .page-link {
    font-size: 24px;
    padding: 0 10px;
}

/* Disabled state for arrows */
.page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
} 