/* Botons */
.entrapolis-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #f5f5f5;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.entrapolis-btn:hover {
    background: #e0e0e0;
    color: #333;
}

.entrapolis-btn-primary {
    background: #acf3a3;
    color: #000000;
}

.entrapolis-btn-primary:hover {
    background: #6cbe61;
    color: #000000;
}

/* Load More Button */
.entrapolis-load-more-wrapper {
    text-align: center;
    margin: 30px 0;
    padding: 20px 0;
}

.entrapolis-load-more-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #acf3a3;
    color: #000000;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.entrapolis-load-more-btn:hover {
    background: #6cbe61;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.entrapolis-load-more-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.entrapolis-loading {
    color: #666;
    font-size: 0.95rem;
    font-style: italic;
}