.load-more-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.load-more-btn:hover {
    background-color: #45a049;
}

.loading {
    text-align: center;
    padding: 20px;
    display: none;
    font-style: italic;
    color: #666;
}

#load-more-container {
    margin-top: 20px;
    text-align: center;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    gap: 5px;
}

.page-link {
    padding: 8px 9px;
    background: #f0f0f0;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
}

.page-link:hover {
    background: #ddd;
}

.page-link.active {
    background: #4CAF50;
    color: white;
}

.page-dots {
    padding: 8px 12px;
    align-self: flex-end;
}

.end-message {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 20px;
}