/* Load more button */
.hp-listings-load-more-wrapper {
    text-align: left;
    margin-top: 0.5rem;
}

.hp-listings-load-more-btn {
    display: inline-block;
    height: 40px;
    padding: 6px 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F5F5F5;
    color: #777575;
    border: 1px solid #F5F5F5;
    border-radius: 10px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: Open Sans, sans-serif;
}

.hp-listings-load-more-btn:hover {
    background-color: #e5e5e5;
    border-color: #e5e5e5;
}

.hp-listings-load-more-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Hidden listings */
.hp-listing-hidden {
    display: none !important;
}

/* Show load more button only on mobile */
@media (min-width: 769px) {
    .hp-listings-load-more-wrapper {
        display: none !important;
    }
}

/* Show load more button on mobile */
@media (max-width: 768px) {
    .hp-listings-load-more-wrapper {
        display: block;
        margin-top: 1.5rem;
    }
}
