/* Additional fixes for developer cards */
.listing-title {
    font-size: 20px;
    margin: 0 0 5px;
    font-weight: 600;
}

.listing-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.listing-title a:hover {
    color: #3f51b5;
}

/* Star rating styles */
.developer-rating {
    color: #FFD700;
    font-size: 16px;
    margin-bottom: 5px;
}

.developer-rating-count {
    color: #888;
    font-size: 13px;
    margin-bottom: 10px;
}

/* Fix for province chips */
.province-section {
    margin-top: 10px;
}

.province-label {
    font-size: 13px;
    color: #666;
    margin-bottom: 6px;
}

.province-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
}

.province-chip {
    background: #eee;
    border-radius: 20px;
    padding: 3px 10px;
    font-size: 12px;
    color: #666;
    display: inline-block;
}

/* Fix for investment stats */
.investment-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 10px;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 18px;
    font-weight: 600;
    color: #3f51b5;
    display: block;
}

.stat-label {
    font-size: 12px;
    color: #666;
}

/* Responsive fixes */
@media (max-width: 767px) {
    .developer-grid-style {
        height: auto;
        min-height: 400px;
    }
}