.developer-browse-form {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}

.region-item {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s ease;
}

.region-item:hover {
    background-color: #f9f9f9;
}

.region-item:last-child {
    border-bottom: none;
}

.region-name {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 600;
}

.region-name a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
}

.region-name a:hover {
    color: #3f51b5;
}

.cities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
}

.city-link, .more-link {
    color: #666;
    text-decoration: none;
    background: #f5f5f5;
    padding: 3px 8px;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.city-link:hover {
    background: #3f51b5;
    color: #fff;
}

.more-link {
    color: #3f51b5;
    font-weight: 500;
}

.more-link:hover {
    background: #e0e0e0;
}

/* Responsive styles */
@media (max-width: 767px) {
    .cities-list {
        gap: 5px;
    }
    
    .city-link, .more-link {
        padding: 2px 6px;
        font-size: 12px;
    }
}